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