vote up 10 vote down star
9

Initial Googling indicates that there's no built-in way to do regular expressions in an Objective-C Cocoa application.

So four questions:

  1. Is that really true?

  2. Are you kidding me?

  3. Ok, then is there a nice open-source library you recommend?

  4. What are ways to get close enough without importing a library, perhaps with the NSScanner class?

flag

72% accept rate
Thanks for cleaning this up, Chris! And thanks for the extremely helpful answers, everyone. – dreeves Jan 8 at 4:50

5 Answers

vote up 13 vote down check
  1. Yes there's no regex support in cococa. If you only interested in the bool value of matching, you can use NSPredicate which supports ICU regex syntax. But usually you're interested in the position of the match or position of subexpressions, and you cannot get it with NSPredicate.
  2. As mentioned you can use regex POSIX functions. But they are considered slow, and the regex syntax is limited compared to other solutions (ICU/pcre).
  3. There are many OSS libraries, CocoaDev has an extensive list.
  4. RegExKitLite for example doesn't requires any libraries, just add the .m and .h to your project.

    (My complaint agains RegExKitLite is that it extends NSString via category, but it can be considered as a feature too. Also it's uses the nonpublic ICU libraries shipped with the OS, which isn't recommended by Apple.)

link|flag
Keep in mind that POSIX regex functions don't work with unicode (ASCII only). – Tom Dalling Aug 2 at 23:53
vote up 11 vote down

RegexKit is the best I've found yet. Very Cocoa:y. I'm using the "Lite" version in several of our iPhone apps:

http://regexkit.sourceforge.net/ http://lingonikorg.com

link|flag
I second RegexKit Lite. Very nice! – Dave Dribin Jan 8 at 3:17
Cool, the more people that use it, the better it'll probably become! – avocade Jan 12 at 0:06
vote up 8 vote down

You can use the POSIX Regular Expressions library (Yay for a POSIX compliant OS). Try

man 3 regex
link|flag
oh, I see. this is a way to do it in straight C, which should presumably work in any objective-C app. cool, thanks! is that basically the accepted way to do this? – dreeves Jan 7 at 21:29
It's a way, that doesn't require any additional dependencies. There are other choices, in terms of open source libraries that you could import (PCRE, for Perl regexes, The Boost RegEx library if you're using Obj-C++, or others listed in other answers). – Adam Wright Jan 7 at 21:32
Any disadvantages to mixing straight C with Objective-C? Could you maybe include a code snippet for converting to and from NSString? thanks again! – dreeves Jan 7 at 21:45
Objective-C is built on top of C, so you're not really mixing anything. Most people use a library though, since it offers an API that's easier to use. – Marc Charbonneau Jan 7 at 23:29
1  
And because POSIX regex functions only work with ASCII strings. – Tom Dalling Aug 2 at 23:58
vote up 3 vote down

I like the AGRegex framework which uses PCRE, handy if you are used to the PCRE syntax. The best version of this framework is the one in the Colloquy IRC client as it has been upgraded to use PCRE 6.7:

http://colloquy.info/project/browser/trunk/Frameworks/AGRegex

It's very lightweight, much more so than RegExKit (although not as capable of course).

link|flag
Why less capable if it has full perl-compatible regex? – dreeves Jan 8 at 4:02
The associated Objective-C helper methods are not nearly as extensive as those in RegExKit, however they are fine for most purposes. – irsk Jan 8 at 10:36
vote up 1 vote down

During my search on this topic I came across CocoaOniguruma which uses Oniguruma, the Regular Expression engine behind Ruby1.9 and PHP5. It seems a bit newer compared to the existing OregKit (in Japanese). Not sure how these stack up against other bindings.

link|flag

Your Answer

Get an OpenID
or

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