如何创建值包含字符序列的谓词,例如 Xcode 过滤
我想用谓词实现 Xcode 函数过滤。如果您在 Xcode 中通过“myFunc”过滤函数名称,它将查找该字符序列而不是确切的字符串。
示例:
momsYellowFunCar
m Y FunC
我是否必须使用 MATCHES 并提供正则表达式?
I want to implement Xcode function filtering with predicate. If you filter the function names in Xcode, by "myFunc" it will look for that sequence of characters not the exact string.
Example:
momsYellowFunCar
m Y FunC
Would I have to use MATCHES and provide a regex some how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 10.7+ 和 iOS 4.0+ 内置的 NSRegularExpression 来执行此操作。如下所示:
如果必须使用 NSPredicate,则可以使用此代码的变体
-[NSPredicate predicateWithBlock:]
。You can do this using NSRegularExpression which is built-in on 10.7+ and iOS 4.0+. Something like the following:
If you have to use an NSPredicate, you can use a variation of this code with
-[NSPredicate predicateWithBlock:]
.