iPhone/Objective-C - 在字符串中搜索特定单词

发布于 2024-11-03 03:41:03 字数 141 浏览 2 评论 0原文

有没有办法在 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 技术交流群。

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

发布评论

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

评论(2

猥琐帝 2024-11-10 03:41:03
if ([myString rangeOfString:stringToSearch].location != NSNotFound) {
    // stringToSearch is present in myString
}
if ([myString rangeOfString:stringToSearch].location != NSNotFound) {
    // stringToSearch is present in myString
}
如果没有你 2024-11-10 03:41:03

您可以使用 NSString: :rangeOfString 为此。
从文档中 -

返回值
一个 NSRange 结构,给出接收器中第一次出现 aString 的位置和长度。如果未找到 aString 或者为空 (@""),则返回 {NSNotFound, 0}。

You can use NSString::rangeOfString for this.
From the docs -

Return Value
An NSRange structure giving the location and length in the receiver of the first occurrence of aString. Returns {NSNotFound, 0} if aString is not found or is empty (@"").

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