vote up 1 vote down star
1

According to this guide, I can use NSPredicate to do regex matching on strings, i.e., the perl equivalent of $my_string =~ m/[some regex]/

But can I do regex replace, i.e. the equivalent of this perl expression: $my_string =~ s/[pattern]/[replacement]/g ?

flag

3 Answers

vote up 3 vote down

The easiest solution I've found is RegexKitLite:

http://regexkit.sourceforge.net/

(Note the "Lite" version is the one you use for the iPhone)

Just two files to add to a project, and a -licucore flag for the linker. It uses the built in regex abilities.

It has NSString extensions, including ones to do replacements and can also pull out multiple matches by number.

link|flag
vote up 4 vote down

Google Toolbox for Mac has some useful regex functionality. It works on the iPhone. Take a look at GTMRegex.h. There is a category on NSString with this method:

- (NSString *)gtm_stringByReplacingMatchesOfPattern:(NSString *)pattern withReplacement:(NSString *)replacementPattern;
link|flag
vote up 2 vote down

This functionality is not available natively in Cocoa, but you can use the standard c regex.h functions as described here (about three quarters of the way down the page).

There is also an open source library called ObjPCRE which may do the trick.

And someone was able to make it work using JavascriptCore.

Good luck!

link|flag

Your Answer

Get an OpenID
or

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