点击收缩查看代码

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}");
}

END
本文作者:
文章标题:C# 正则表达式 判断string 是否是数字
本文地址:https://blog.snwl0311.cn/index.php/archives/48/
版权说明:若无注明,本文皆薄·客原创,转载请保留文章出处。
Last modification:May 20, 2022
有钱的给钱,没钱的点赞哦,感谢哥哥姐姐厚爱!