vote up 0 vote down star

There is no default RegEx library on the iPhone. Is it ok if I use UIWebView's stringByEvaluatingJavaScriptFromString to evaluate a JavaScript string that actually uses the RegExp object to evaluate an expression? Is this supported on the iPhone?

flag

3 Answers

vote up 2 vote down

Of course, you can always just try it and find out, but there's probably another way to get what you need. The NSPredicate class, for example, allows string matching on regular expressions. If you need to do searching, I'm not sure about that, but take a look at this article for matching anyway.

link|flag
vote up 1 vote down

There is the BSD "C" regex library on the iPhone, I have used it in a couple of apps. man:regex

link|flag
vote up 0 vote down check

Yes, it's possible, here's a sample code. The idea behind doing it this way might be to support Javascript-compliant Regular Expressions, leading to reuse and portability of existent JS Regexp code you might have:

UIWebView *wb = [[UIWebView alloc] init];
NSLog(@"%@", [wb stringByEvaluatingJavaScriptFromString:
                          @"re = new RegExp('su{1,3}p+er'); re.test('suuuper')"]);
link|flag

Your Answer

Get an OpenID
or

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