如何使用正则表达式在 C# 中提取文本字符串中方括号的内容

发布于 2024-08-12 23:08:31 字数 210 浏览 7 评论 0原文

如果我有如下所示的一串文本,如何收集 C# 集合中括号的内容,即使它超出了换行符?

例如...

string s = "test [4df] test [5yu] test [6nf]";

应该给我..

集合[0] = 4df

集合[1] = 5yu

集合[2] = 6nf

if i have a string of text like below, how can i collect the contents of the brackets in a collection in c# even if it goes over line breaks?

eg...

string s = "test [4df] test [5yu] test [6nf]";

should give me..

collection[0] = 4df

collection[1] = 5yu

collection[2] = 6nf

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

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

发布评论

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

评论(4

九公里浅绿 2024-08-19 23:08:31

您可以使用正则表达式和一些 Linq 来完成此操作。

    string s = "test [4df] test [5y" + Environment.NewLine + "u] test [6nf]";

    ICollection<string> matches =
        Regex.Matches(s.Replace(Environment.NewLine, ""), @"\[([^]]*)\]")
            .Cast<Match>()
            .Select(x => x.Groups[1].Value)
            .ToList();

    foreach (string match in matches)
        Console.WriteLine(match);

输出:

4df
5yu
6nf

正则表达式的含义如下:

\[   : Match a literal [
(    : Start a new group, match.Groups[1]
[^]] : Match any character except ]
*    : 0 or more of the above
)    : Close the group
\]   : Literal ]

You can do this with regular expressions, and a bit of Linq.

    string s = "test [4df] test [5y" + Environment.NewLine + "u] test [6nf]";

    ICollection<string> matches =
        Regex.Matches(s.Replace(Environment.NewLine, ""), @"\[([^]]*)\]")
            .Cast<Match>()
            .Select(x => x.Groups[1].Value)
            .ToList();

    foreach (string match in matches)
        Console.WriteLine(match);

Output:

4df
5yu
6nf

Here's what the regular expression means:

\[   : Match a literal [
(    : Start a new group, match.Groups[1]
[^]] : Match any character except ]
*    : 0 or more of the above
)    : Close the group
\]   : Literal ]
七七 2024-08-19 23:08:31
Regex regex = new Regex(@"\[[^\]]+\]", RegexOptions.Multiline);
Regex regex = new Regex(@"\[[^\]]+\]", RegexOptions.Multiline);
哥,最终变帅啦 2024-08-19 23:08:31

关键是正确转义正则表达式中使用的特殊字符,例如您可以这样匹配 [ 字符:@"\["

The key is to correctly escape the special characters used in regular expressions, for example you can match a [ character this way: @"\["

回梦 2024-08-19 23:08:31
Regex rx = new Regex(@"\[.+?\]");
var collection = rx.Matches(s);

您需要修剪掉方括号,重要的部分是惰性运算符。

Regex rx = new Regex(@"\[.+?\]");
var collection = rx.Matches(s);

You will need to trim the square brackets off, the important part is the lazy operator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文