有两种方式:
一种直接从vs平台拉控件,然后填写你要正则约束的条件,
一种用代码:
using System.Text.RegularExpressions;
///
/// 检验是否是英文、数字、下划线和点
///
/// 需要检验的字符串
///
public static bool IsCheck(string str)
{
Regex rx = new Regex(@".....");
return rx.IsMatch(str);
}
其他方法你可以看看这个,http://www.kuqin.com/docs/diveintopythonzh-cn-5.4b/html/regular_expressions/n_m_syntax.html