iPhone/Objective-C - 在字符串中搜索特定单词
有没有办法在 Objective-C 中搜索字符串中的特定单词?
假设我有以下句子:
thequickbrownfox
如果我想在句子中搜索“quick”。实现这一目标的最佳方法是什么?
感谢您的帮助。
Is there a way to search for specific words within a string in Objective-C?
Let's say I have the following sentence:
thequickbrownfox
If I wanted to search for "quick" within the sentence. What would be the best way to achieve this?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 NSString: :rangeOfString 为此。
从文档中 -
You can use NSString::rangeOfString for this.
From the docs -