在C#中使用正则表达式来匹配rtf格式的文本

发布于 2024-11-18 14:10:51 字数 143 浏览 2 评论 0原文

我需要使用正则表达式从 rtf 格式的文本中提取粗体文本。例如: \b 棕色狐狸\b0 跳过\b 懒狗\b0。

如何只获取 \b 和 \b0 之间的文本?我尝试了这个表达式,但它只返回第一个匹配项:(\\b.+\b0[^\\b])

I need to use a regexp to extract bold text from rtf formatted text. For example: The \b brown fox\b0 jumped over the \b lazy dog\b0.

How can I get only the text enclosed between \b and \b0? I tried this expression but it returned only the first match: (\\b.+\b0[^\\b])

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

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

发布评论

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

评论(2

鹤舞 2024-11-25 14:10:51
string s = @"The \b brown fox\b0 jumped over the \b lazy dog\b0";

Regex rgx = new Regex(@"\\b(.*?)\\b0");
foreach (Match m in rgx.Matches(s))
{
    Console.WriteLine(m.Groups[1].Value);
}

或者,您可以使用捕获:

string s = @"The \b brown fox\b0 jumped over the \b lazy dog\b0";

Regex rgx = new Regex(@"(.*?\\b(.*?)\\b0)*");
foreach (Capture c in rgx.Match(s).Groups[2].Captures)
{
    Console.WriteLine(c.Value);
}
string s = @"The \b brown fox\b0 jumped over the \b lazy dog\b0";

Regex rgx = new Regex(@"\\b(.*?)\\b0");
foreach (Match m in rgx.Matches(s))
{
    Console.WriteLine(m.Groups[1].Value);
}

Alternatively you can use captures:

string s = @"The \b brown fox\b0 jumped over the \b lazy dog\b0";

Regex rgx = new Regex(@"(.*?\\b(.*?)\\b0)*");
foreach (Capture c in rgx.Match(s).Groups[2].Captures)
{
    Console.WriteLine(c.Value);
}
回眸一遍 2024-11-25 14:10:51

使用这个正则表达式:

\\b([\s\S]+?)\\b0

Use this regular expression:

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