求一正则表达式 去除特殊字符除了标点符号
2个回答
展开全部
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
上面那句代码有点长 不知道弄错了没有,你快去试试
{
string pattern = @"^(([A-Z]*|[a-z]*|/d*|[-_/~!@#/$%/^&/*/./(/)/[/]/{/}<>/?////'/"]*)|.{0,5})$|/s ";
Regex regex = new Regex(pattern);
return regex.IsMatch(input);
}
用的时候就bb(textbox1.text)就行了
返回true 或者false
上面那句代码有点长 不知道弄错了没有,你快去试试
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询