RegexKitLite 正则表达式库

程序名称:RegexKitLite

授权协议: BSD

操作系统: OS X

开发语言: Objective-C

RegexKitLite 介绍

RegexKitLite 是一个轻量级的 Objective-C 的正则表达式库,支持 Mac OS X 和 iOS,使用
ICU 库开发。

iPhone 上使用 RegexKitLite 的示例代码

// finds phone number in format nnn-nnn-nnnn NSRange r;
Nsstring *regEx = @”{3}-[0-9]{3}-[0-9]{4}”;
r = [textView.text rangeOfString:regEx options:NSRegularExpressionSearch];
if (r.location != NSNotFound) {
NSLog(@”Phone number is %@”, [textView.text substringWithRange:r]);
}
else {
NSLog(@”Not found.”);
}

RegexKitLite 官网

http://regexkit.sourceforge.net/RegexKitLite/

相关编程语言

Acapela TTS 是一个为 iPhone 和 iPad 开发的 TTS 引...
二维码(QR Code)扫描静态库,扫描效率较高。
RegexKitLite 是一个轻量级的 Objective-C 的正则表...
一款基于ASIHttpReques开源的仿迅雷多线程断点续传功...
实现动态检测网络(wifi)状况,不需要用户手动刷新...
使用iphoneSDK官方NSXMLParserDelegate做的简单xml解...