On Fri, Jun 6, 2008 at 8:31 AM, Cemil Browne <[EMAIL PROTECTED]> wrote:

> This might be a really silly question - but am I missing something obvious?
>  Is there any support at all for regular expressions in the Cocoa libraries?

You can use NSPredicate for regexp matching, though no substitution is possible:

NSPredicate *pred = [NSPredicate predicateWithFormat:@"self matches
%@", yourRegexp];
BOOL result = [pred evaluateWithObject:yourString];

Hamish
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to