double StrToDouble(string value)
Converts string representation of number to double type (double-precision
format with floating point).
数字表現の文字列を double 型に変換します。(倍精度浮動小数点フォーマット)
Parameters:
パラメータ:
value - String containing the number character representation format.
数字文字を表現したフォーマットを含んでいる文字列。
Sample:
サンプル:
double var=StrToDouble("103.2812");
|