public static bool bb(string input)
{
string pattern = @"^(([A-Z]*|[a-z]*|/d*|[-_/~!@#/$%/^&/*/./(/)/[/]/{/}<>/?////'/"]*)|.{0,5})$|/s ";
Regex regex = new Regex(pattern);
return regex.IsMatch(input);
}
用的时候就bb(textbox1.text)就行了
返回true 或者false
上面那句代码有点长 不知道弄错了没有,你快去试试
查找的表达式
[~`@#$%^&\*()_\+{}\|<>\/\\\[\]]
替换的表达式
[什么都不要填]