常见的特殊字符 基本都能转义 ,不知道还有没有漏掉的 ,目前使用正常 ,有需要的朋友可以参考一下
复制代码 代码如下:
public static string Replace(string oldStr)
{
if (string.IsNullOrEmpty(oldStr))
{
return "";
}
string str2 = Regex.Replace(oldStr, @"[\[\+\\\|\(\)\^\*\""\]'%~#-&]", delegate(Match match)
{
if (match.Value == "'")
{
return "''";
}
else
{
return "[" + match.Value + "]";
}
});
return str2;
}
您可能感兴趣的文章: