C#通过正则表达式判断字符是否为数字

 

int str="121212,1212"

const string pattern = "^[0-9]*$";
Regex rx = new Regex(pattern);
return rx.IsMatch(str); //bool类型

 

posted @ 2019-03-18 11:14  没有狐狸的南墙  阅读(5992)  评论(0编辑  收藏  举报