当前位置: 移动技术网 > IT编程>开发语言>c# > C#判断字符串是否是数字(实例)

C#判断字符串是否是数字(实例)

2019年07月18日  | 移动技术网IT编程  | 我要评论

话不多说,请看代码

/// <summary>
/// 判断字符串是否是数字
/// </summary>
public static bool isnumber(string s)
{
 if (string.isnullorwhitespace(s)) return false;
 const string pattern = "^[0-9]*$";
 regex rx = new regex(pattern);
 return rx.ismatch(s);
}

 以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持移动技术网!

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网