Skip navigation.
 
mlRe: stringByTrimmingCharactersInSet (work-around)
FROM : Ali Ozer
DATE : Sat Nov 23 07:46:41 2002

> One work-around is to simply append a space to the string before
> trimming. Like this:
>
>    value = [value stringByAppendingString: @" "];
>    value = [value stringByTrimmingCharactersInSet: [NSCharacterSet
> whitespaceCharacterSet]];
>
> Not pretty, but the good thing is this code will continue to work
> after Apple fixes stringByTrimmingCharactersInSet:.


This is indeed a bug; see
http://developer.apple.com/qa/qa2001/qa1202.html

Your workaround seems reasonable (when you want to remove characters
from the whitespace set).

Ali
_______________________________________________
cocoa-dev mailing list | <email_removed>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

Related mailsAuthorDate
mlRe: stringByTrimmingCharactersInSet (work-around) Jacob Engstrand Nov 23, 07:09
mlRe: stringByTrimmingCharactersInSet (work-around) Ali Ozer Nov 23, 07:46
mlRe: stringByTrimmingCharactersInSet (work-around) Jacob Engstrand Nov 23, 07:59