标签:正则 ati 常用 match 判断 string regex sig bool
public static bool IsNumeric(string value) { return Regex.IsMatch(value, @"^[+-]?\d*[.]?\d*$"); } public static bool IsInt(string value) { return Regex.IsMatch(value, @"^[+-]?\d*$"); } public static bool IsUnsign(string value) { return Regex.IsMatch(value, @"^\d*[.]?\d*$"); } public static bool isTel(string strInput) { return Regex.IsMatch(strInput, @"\d{3}-\d{8}|\d{4}-\d{7}"); }
标签:正则 ati 常用 match 判断 string regex sig bool
原文地址:http://www.cnblogs.com/WZH75171992/p/7827212.html