「Atof」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
編集の要約なし
編集の要約なし
 
(同じ利用者による、間の1版が非表示)
24行目: 24行目:
3.0
3.0


(atof "3.9")  
(atof "-3.9")  
3.9
-3.9


(atof "0.0")  
(atof "0.0")  
0.0
0.0
(atof "2x2")
2.0


(atof "100a200")  
(atof "100a200")  
43行目: 46行目:
-----
-----
関連事項
関連事項
* [[atoi]] 関数
* [[atof]] 関数
* [[itoa]] 関数
* [[rtos]] 関数
* [[rtos]] 関数
* [[atoi]]
* [[itoa]]


[[Category:AutoLISP]]
[[Category:AutoLISP]]

2021年3月16日 (火) 10:47時点における最新版

構文
(atof string)


機能
文字列を実数に変換する。


引数
  • string : 実数に変換する文字列。


戻り値
実数。


サンプル
(atof "97.1") 
97.1

(atof "3") 
3.0

(atof "-3.9") 
-3.9

(atof "0.0") 
0.0

(atof "2x2") 
2.0

(atof "100a200") 
100.0

(atof "100a200") 
0.0

(atof "あ?") 
0.0



関連事項