Skip navigation.
 
mlRe: Searching for "whole word" in NSString
FROM : Douglas Davidson
DATE : Tue Jan 29 21:05:09 2008

On Jan 29, 2008, at 11:38 AM, John Stiles wrote:

> Oh well, off to Radar to file a bug on the Find panel, and I'll 
> figure out some sort of solution. I can probably use NSCharacterSet 
> or something and look at the characters on either side of the found 
> text. I was hoping to avoid that, but it looks like I can't.


You should still be able to build on doubleClickAtIndex: to determine 
word boundaries at either end of your search string and in the found 
text, and then implement whatever boundary-matching semantics you 
choose on top of that, without having to use NSCharacterSet or 
anything of the sort.  Word boundary detection is complicated enough 
(cf. UAX #29, "Text Boundaries", at http://www.unicode.org/reports/tr29/)
  that you really don't want to have to implement it yourself.

Douglas Davidson

Related mailsAuthorDate
mlSearching for "whole word" in NSString John Stiles Jan 29, 19:12
mlRe: Searching for "whole word" in NSString Citizen Jan 29, 20:05
mlRe: Searching for "whole word" in NSString Douglas Davidson Jan 29, 20:20
mlRe: Searching for "whole word" in NSString mmalc crawford Jan 29, 20:23
mlRe: Searching for "whole word" in NSString John Stiles Jan 29, 20:29
mlRe: Searching for "whole word" in NSString John Stiles Jan 29, 20:32
mlRe: Searching for "whole word" in NSString John Stiles Jan 29, 20:38
mlRe: Searching for "whole word" in NSString John Stiles Jan 29, 20:45
mlRe: Searching for "whole word" in NSString Douglas Davidson Jan 29, 21:05
mlRe: Searching for "whole word" in NSString Mike Wright Jan 29, 21:28
mlRe: Searching for "whole word" in NSString Mike Wright Jan 30, 17:17
mlRe: Searching for "whole word" in NSString John Stiles Jan 30, 20:37
mlRe: Searching for "whole word" in NSString Deborah Goldsmith Feb 6, 04:30
mlRe: Searching for "whole word" in NSString Mike Wright Feb 6, 06:27
mlRe: Searching for "whole word" in NSString John Stiles Feb 6, 18:25
mlRe: Searching for "whole word" in NSString Aki Inoue Feb 6, 23:19
mlRe: Searching for "whole word" in NSString Deborah Goldsmith Feb 7, 04:03