摘要:
/**//// /// 判断一个字符串是否为合法整数(不限制长度) /// /// 字符串 /// public static bool IsInteger(string s) { string pattern = @"^\d*$"; return ... 阅读全文
posted @ 2005-09-21 08:54 HQT 阅读(3520) 评论(0) 推荐(0)
|
||
|
摘要:
/**//// /// 判断一个字符串是否为合法整数(不限制长度) /// /// 字符串 /// public static bool IsInteger(string s) { string pattern = @"^\d*$"; return ... 阅读全文
posted @ 2005-09-21 08:54 HQT 阅读(3520) 评论(0) 推荐(0) |
||