Java 的 Matcher 类有 PHP 端口吗?

发布于 2024-12-10 06:24:21 字数 1537 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

意中人 2024-12-17 06:24:21

您是否正在寻找 PHP 中的 while(find next match){ do stuff } 等效项(不使用 preg_match_all)?

在这种情况下,请使用 preg_match 和 offset 参数。例如:

offset = 0;
while(preg_match(re, str, matches, PREG_OFFSET_CAPTURE, offset)){
    offset = matches[0][1] + strlen(matches[0][0]);

    // do stuff
}

Are you looking for the while(find next match){ do stuff } equivalent in PHP (without using preg_match_all)?

In that case use preg_match with the offset parameter. For example:

offset = 0;
while(preg_match(re, str, matches, PREG_OFFSET_CAPTURE, offset)){
    offset = matches[0][1] + strlen(matches[0][0]);

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