C#(IsNumeric) 字符串转换为数字
摘要:
判断C#中的字符串是否是数字,如果是转换成int类型(可以判断正数和负数) 1publicintIsNumeric(stringstr) 2{ 3inti; 4if(str!=null&&System.Text.RegularExpressions.Regex.IsMatch(str,@"^-?\d+$")) 5i=int.Parse(str); 6else 7i=-1; 8ret... 阅读全文
posted @ 2005-10-25 10:50 yaosansi 阅读(1246) 评论(0) 推荐(0) 编辑