检查某个字符串是否整型数.
StringIsInt ( "字符串" )
字符串 | 要检查的字符串. |
成功: | 返回值为 1. |
失败: | 返回值为 0,说明给定的字符串不是一个整数. |
StringIsInt("+42") ;returns 1
StringIsInt("-00") ;returns 1
StringIsInt("1.0") ;returns 0 due to the decimal point
StringIsInt(1.0) ;returns 1 due to number-string conversion
StringIsInt("1+2") ;returns 0 due to plus sign