vote up 0 vote down star

I'm looking for a quick and easy way to strip non-alphanumeric characters from an NSString. Probably something using an NSCharacterSet, but I'm tired and nothing seems to return a string containing only the alphanumeric characters in a string.

flag

2 Answers

vote up 2 vote down check

What I wound up doing was creating an NSCharacterSet and the -invertedSet method that I found (it's a wonder what an extra hour of sleep does for documentation-reading abilities). Here's the code snippet, assuming that someString is the string from which you want to remove non-alphanumeric characters:

NSCharacterSet *charactersToRemove =
[[ NSCharacterSet alphanumericCharacterSet ] invertedSet ];

NSString *trimmedReplacement =
[ someString stringByTrimmingCharactersInSet:charactersToRemove ];

trimmedReplacement will then contain someString's alphanumeric characters.

link|flag
vote up 1 vote down

This will help you out but read it when you're not tired!!

Stripping out a set of characters from an NSString

link|flag
Thanks! I wound up just using NSCharacterSet, but this article led me down the right path. – Jeff Kelley Nov 1 at 15:57
cool, glad to have helped! – ennuikiller Nov 1 at 16:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.