文字列を数値に変換
strtoint s1,n2
s1 : 数値に変換する文字列 n2 : 基数(2~36)
文字列を数値に変換します。
strtoint "111101",2 ;2進数とみなして変換 mes stat strtoint "0x1F" ;先頭が"0x"だと16進数とみなされる(Base省略時) mes stat strtoint "0376" ;先頭が"0"だと8進数とみなされる(Base省略時) mes stat strtoint "23413",7 ;7進数とみなして変換 mes stat strtoint "za",36 ;36進数とみなして変換 mes stat stop
バージョン | 2.61 |
作成日 | 2004/03/01 |
著作者 | tom |
URL | http://www5b.biglobe.ne.jp/~diamond/hsp/hsp2file.htm |
備考 | llmod.as,misc.asをインクルードする |
タイプ | 拡張命令 |
グループ | オブジェクト制御命令 |
hs ファイル | hsphelp\llmod_misc.hs |