判断字符串是否是数字
程序员文章站
2022-06-11 15:55:38
...
private bool IsNumber(string s)
{
if (string.IsNullOrWhiteSpace(s)) return false;
const string pattern = "^[0-9]*$";
Regex rx = new Regex(pattern);
return rx.IsMatch(s);
}
上一篇: Node.js npm命令运行node.js脚本的方法
下一篇: 判断字符串是否是数字