摘要: 其实用正则表达式也可以 static bool IsNumeric(string str) { if (str==null || str.Length==0) return false; foreach(char c in str) { if (!Char.IsNumber(c)) { return false; ... 阅读全文
posted @ 2004-03-26 09:05 CZoneSoft 阅读(15834) 评论(31) 推荐(1)