当正则表达式匹配重叠时会发生什么?

发布于 2025-01-05 06:05:15 字数 254 浏览 0 评论 0原文

在 C++11 中,如果正则表达式的匹配项彼此有交集,会发生什么情况?例如,如果源字符串是 "ababa" 并且正则表达式是 "aba",首先,如果我迭代字符串中正则表达式的匹配项,是否有两个匹配项或只有一个?接下来,如果我使用 regex_replace 将 "aba" 的所有实例替换为 "C",最终结果会是什么?

我无法测试它,因为我还无法访问支持正则表达式的编译器。

In C++11 what happens if matches of a regex have intersections with each other? For example, if the source string is "ababa" and the regex is "aba", first if I iterate on matches of the regex in string, are there two matches or only one? And next, if I replace all instances of "aba" with "C" using regex_replace, what will be the final result?

I cannot test that because I don't have access to a compiler that supports regex yet.

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

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

发布评论

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

评论(1

鱼窥荷 2025-01-12 06:05:15

将有一场比赛,替换结果将为Cba

说明:

  • 正则表达式引擎从字符串中的第一个位置启动。
  • 它尝试匹配 aba 并成功。
  • 它将 aba 替换为 C(结果:Cba)。
  • 它尝试从当前位置(位于 Cba 之间)再次匹配 aba
  • 它在这里失败(以及从下一个位置(最后一个 a 之前)和下一个位置(在字符串末尾))。
  • 就是这样。

There will be one match, and the replacement result will be Cba.

Explanation:

  • The regex engine starts at the first position in the string.
  • It tries to match aba and succeeds.
  • It replaces aba with C (result: Cba).
  • It tries to match aba again from the current position (which is between C and ba).
  • It fails here (and also from the next position (right before the final a) and the next (at the end of the string)).
  • That's it.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文