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?
|
|
|
||
|
|
|
|
Of course, you can always just try it and find out, but there's probably another way to get what you need. The |
||
|
|
|
|
There is the BSD "C" regex library on the iPhone, I have used it in a couple of apps. man:regex |
||
|
|
|
|
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:
|
||
|
|
