C#(IsNumeric) 字符串转换为数字
判断C#中的字符串是否是数字,如果是转换成int类型(可以判断正数和负数)
1
public int IsNumeric(string str)
2
{
3
int i;
4
if(str != null && System.Text.RegularExpressions.Regex.IsMatch(str,@"^-?\d+$"))
5
i = int.Parse(str);
6
else
7
i = -1;
8
return i;
9
}
2
3
4
5
6
7
8
9
浙公网安备 33010602011771号