Re: representing TABs in NSString.
Re: representing TABs in NSString.
- Subject: Re: representing TABs in NSString.
- From: Max Horn <email@hidden>
- Date: Sun, 2 Dec 2001 17:24:23 +0100
At 1:59 Uhr -0500 02.12.2001, Jake wrote:
How does one delete tab from a mutable character set? I tried
wanttab = [[NSCharacterSet whitespaceCharacterSet] mutableCopy];
[wanttab removeCharactersInString:@"\t"];
While @"\t" and @"\x09" works for
- NSString componentsSeparatedByString:
they fails for
- NSMutableCharacterSet removeCharactersInString:
each time it is recognized as '\' and 't' instead of a tab.
From the top of my head, try:
[wanttab removeCharactersInRange:NSMakeRange('\t',1)];
Cheers,
Max
--
-----------------------------------------------
Max Horn
Software Developer
email: <
mailto:email@hidden>
phone: (+49) 6151-494890