研发闲暇时间,将写代码过程比较重要的内容备份一下,下面代码段是关于C#验证一个字符串是否符合指定的正则表达式的代码,希望对各朋友有所用处。
public static bool QuickValidate(string _express, string _value)
{
if (_value == null) return false;
Regex myRegex = new Regex(_express);
if (_value.Length == 0)
{
return false;
}
return myRegex.IsMatch(_value);
}