求一正则表达式 去除特殊字符除了标点符号

2024-12-23 10:19:27
推荐回答(2个)
回答1:

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
上面那句代码有点长 不知道弄错了没有,你快去试试

回答2:

查找的表达式
[~`@#$%^&\*()_\+{}\|<>\/\\\[\]]
替换的表达式
[什么都不要填]