有人可以告诉我我需要过滤掉什么样的正则表达式---> %,&,! < ----我知道基本单词测试,但不知道一些特殊字符。
答案 0 :(得分:3)
你可以写:
string result = Regex.Replace(input, "[%&!]");
括号[...]
表示一个字符类,意思是“这些字符中的任何一个”。
答案 1 :(得分:0)
或者......您可以执行以下操作:
String testValue = "3% ab";
testValue = testValue.Replace("%",String.Empty);