How can I detect if a string contains a certain word? For example, I have a string below which reads:
@"Here is my string."
I'd like to know if I can detect a word in the string, such as "is" for example.
|
How can I detect if a string contains a certain word? For example, I have a string below which reads:
I'd like to know if I can detect a word in the string, such as "is" for example. |
||||
|
Here's how I would do it:
You can easily add this as a category onto
|
|||||||||||||||
|
|
Use the following code to scan the word in sentence.
|
|||
|
|
|
I recommend using NSLinguisticTagger. We can use it to search
This outputs:
It ignores |
|||
|
|
|
A complete solution would first scan for the string (without added blanks), then check if the immediately prior character is either blank or beginning of line. Similarly check if the immediately following character is either blank or end of line. If both tests pass then you have a match. Depending on your needs you might also check for An alternative approach, of course, is to parse the string into words and check each word individually. |
|||
|
|
rangeOfString. – Hot Licks Sep 13 '12 at 19:13