非贪婪 NSRegularExpression

发布于 2025-01-06 17:55:04 字数 267 浏览 1 评论 0原文

我需要一个非贪婪匹配的 NSRegularExpression 。你知道,如果有:

ABABABA

...并且我要求它匹配 B.*B 我希望它获取最小的可能匹配:BAB,而不是 BABAB

我已经在谷歌上搜索了一个小时了,我一直在寻找对支持非贪婪匹配的 ICU/XCode 正则表达式实现的引用,但在我的一生中,我找不到在任何地方实际执行此操作的语法。

I'm need an NSRegularExpression that matches non-greedily. You know, if there's:

ABABABA

...and I ask it to match B.*B I want it to grab the SMALLEST possible match: BAB, not BABAB.

I've been googling this for an hour now, and I keep finding references to the ICU/XCode regex implementation having support for non-greedy matching, but for the life of me, I can't find the syntax to actually do it anywhere.

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

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

发布评论

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

评论(1

青春如此纠结 2025-01-13 17:55:04

添加问号:

B.*?B

请参阅 NSRegularExpression 参考

Add the question mark:

B.*?B

See table 2 in the reference of NSRegularExpression

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