int StrToInteger(string value)
Converts string containing the value character representation into a value of the int (integer) type.
値の文字表現を含んている文字列を int (整数)型の値に変換します。
Parameters:
パラメータ:
1 2 | <b>value</b> - String containing the integer character representation format. 整数文字を表現したフォーマットを含んでいる文字列。 |
Sample:
サンプル:
1 | int var1=StrToInteger("1024"); |