首页 > 编程 > .NET > 正文

使用DataTable.Select 方法时,特殊字符的转义方法分享

2024-07-10 13:15:16
字体:
来源:转载
供稿:网友

复制代码 代码如下:


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;
        }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表