.NET中正则表达式验证字符串的方法

首先要声明

using  System.Text.RegularExpressions;

 使用Regex.IsMatch()方法

下面有个例子,其中strEmail为需要被验证的字符串

Regex.IsMatch(strEmail, @" \w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)* " )

 

顺便附带几个正则表达式

email  \w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
number ^[0-9]*[1-9][0-9]*$

你可能感兴趣的:(正则表达式)