如何在.NET 中对正则表达式的字符串进行编码?

发布于 2024-09-11 20:24:04 字数 295 浏览 2 评论 0原文

我需要动态构建一个正则表达式来捕获给定的关键字,例如

string regex = "(some|predefined|words";
foreach (Product product in products)
    regex += "|" + product.Name; // Need to encode product.Name because it can include special characters.
regex += ")";

是否有某种 Regex.Encode 可以做到这一点?

I need to dynamically build a Regex to catch the given keywords, like

string regex = "(some|predefined|words";
foreach (Product product in products)
    regex += "|" + product.Name; // Need to encode product.Name because it can include special characters.
regex += ")";

Is there some kind of Regex.Encode that does this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如日中天 2024-09-18 20:24:04

您可以使用 Regex.Escape。例如:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

public class Test
{
    static void Main()
    {
        string[] predefined = { "some", "predefined", "words" };
        string[] products = { ".NET", "C#", "C# (2)" };

        IEnumerable<string> escapedKeywords = 
            predefined.Concat(products)
                      .Select(Regex.Escape);
        Regex regex = new Regex("(" + string.Join("|", escapedKeywords) + ")");
        Console.WriteLine(regex);
    }
}

输出:

(some|predefined|words|\.NET|C\#|C\#\ \(2\))

或者不使用 LINQ,但按照原始代码在循环中使用字符串连接(我试图避免):

string regex = "(some|predefined|words";
foreach (Product product)
    regex += "|" + Regex.Escape(product.Name);
regex += ")";

You can use Regex.Escape. For example:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

public class Test
{
    static void Main()
    {
        string[] predefined = { "some", "predefined", "words" };
        string[] products = { ".NET", "C#", "C# (2)" };

        IEnumerable<string> escapedKeywords = 
            predefined.Concat(products)
                      .Select(Regex.Escape);
        Regex regex = new Regex("(" + string.Join("|", escapedKeywords) + ")");
        Console.WriteLine(regex);
    }
}

Output:

(some|predefined|words|\.NET|C\#|C\#\ \(2\))

Or without the LINQ, but using string concatenation in a loop (which I try to avoid) as per your original code:

string regex = "(some|predefined|words";
foreach (Product product)
    regex += "|" + Regex.Escape(product.Name);
regex += ")";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文