RegexKitLite – Lightweight Objective-C Regular Expressions for Mac OS X and iPhone
Рубрики: iPhone on Nov.26, 2009
Very simple installation and in usage.
Installation in iPhone project:
1. Add files RegexKitLite.h and RegexKitLite.m to project.
2. Open Target of project and add -licucore in Other Linker Flags
3. Compile
Example:
Remove tags from web-page.
NSString *text = [content stringByReplacingOccurrencesOfRegex:@"<.*>" withString:@""];
Site resource


