strtoint

文字列を数値に変換

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
URLhttp://www5b.biglobe.ne.jp/~diamond/hsp/hsp2file.htm
備考llmod.as,misc.asをインクルードする
タイプ拡張命令
グループオブジェクト制御命令
hs ファイルhsphelp\llmod_misc.hs