iOS中使用RegexKitLite来试用正则表达式
转:http://blog.csdn.net/nullcn/article/details/6338592
准备工作,下载RegexKitLite 软件包,解压后有2个文件,需要加载到project中。
然后还要加载framework libicucore.dylib ,因为RegexKitLite是调用这个里面的API,苹果规定过不能使用私有的api和没有发布的api。实际上RegexKitLite对NSString做了扩展,目前只支持NSString,对我来说也够了...
基本使用的例子(更多信息参看 官方文档)
1.
- NSString *searchString = @ "This is neat." ;
- NSString *regexString = @"(//w+)//s+(//w+)//s+(//w+)" ;
- NSRange matchedRange = NSMakeRange(NSNotFound, 0UL);
- NSError *error = NULL;
- matchedRange = [searchString rangeOfRegex:regexString options:RKLNoOptions inRange:searchRange capture:2L error:&error];
- NSLog(@"matchedRange: %@" , NSStringFromRange(matchedRange));
- // 2008-03-18 03:51:16.530 test[51583:813] matchedRange: {5, 2},//匹配到‘is‘
- NSString *matchedString = [searchString substringWithRange:matchedRange];
- NSLog(@"matchedString: '%@'" , matchedString);
- // 2008-03-18 03:51:16.532 test[51583:813] matchedString: 'is' //生成子字符串
- NSString *searchString = @"This is neat.";
- NSString *regexString = @"(//w+)//s+(//w+)//s+(//w+)";
- NSRange matchedRange = NSMakeRange(NSNotFound, 0UL);
- NSError *error = NULL;
- matchedRange = [searchString rangeOfRegex:regexString options:RKLNoOptions inRange:searchRange capture:2L error:&error];
- NSLog(@"matchedRange: %@", NSStringFromRange(matchedRange));
- // 2008-03-18 03:51:16.530 test[51583:813] matchedRange: {5, 2},//匹配到‘is‘
- NSString *matchedString = [searchString substringWithRange:matchedRange];
- NSLog(@"matchedString: '%@'", matchedString);
- // 2008-03-18 03:51:16.532 test[51583:813] matchedString: 'is' //生成子字符串
2.找到第一个匹配并返回一个NSString
- NSString *searchString = @ "This is neat." ;
- NSString *regexString = @"(//w+)//s+(//w+)//s+(//w+)" ;
- NSString *matchedString = [searchString stringByMatching:regexString capture:2L];
- NSLog(@"matchedString: '%@'" , matchedString);
- // 2008-03-18 03:53:42.949 test[51583:813] matchedString: 'is'
- NSString *searchString = @"This is neat.";
- NSString *regexString = @"(//w+)//s+(//w+)//s+(//w+)";
- NSString *matchedString = [searchString stringByMatching:regexString capture:2L];
- NSLog(@"matchedString: '%@'", matchedString);
- // 2008-03-18 03:53:42.949 test[51583:813] matchedString: 'is'
3.查找和替换,加括号和概念和Python中的一样,$1指代第一个括号中的内容
- NSString *searchString = @ "This is neat." ;
- NSString *regexString = @"//b(//w+)//b" ;
- NSString *replaceWithString = @"{$1}" ;
- NSString *replacedString = NULL;
- replacedString = [searchString stringByReplacingOccurrencesOfRegex:regexString withString:replaceWithString];
- //NSMutableString可以直接替换,并返回替换的次数
- NSLog(@"replaced string: '%@'" , replacedString);
- // 2008-07-01 19:03:03.195 test[68775:813] replaced string: '{This} {is} {neat}.'
- NSMutableString *mutableString = [NSMutableString stringWithString:@"This is neat." ];
- NSString *regexString = @"//b(//w+)//b" ;
- NSString *replaceWithString = @"{$1}" ;
- NSUInteger replacedCount = 0UL;
- replacedCount = [mutableString replaceOccurrencesOfRegex:regexString withString:replaceWithString];
- NSLog(@"count: %lu string: '%@'" , (u_long)replacedCount, mutableString);
- // 2008-07-01 21:25:43.433 test[69689:813] count: 3 string: '{This} {is} {neat}.'
- NSString *searchString = @"This is neat.";
- NSString *regexString = @"//b(//w+)//b";
- NSString *replaceWithString = @"{$1}";
- NSString *replacedString = NULL;
- replacedString = [searchString stringByReplacingOccurrencesOfRegex:regexString withString:replaceWithString];
- //NSMutableString可以直接替换,并返回替换的次数
- NSLog(@"replaced string: '%@'", replacedString);
- // 2008-07-01 19:03:03.195 test[68775:813] replaced string: '{This} {is} {neat}.'
- NSMutableString *mutableString = [NSMutableString stringWithString:@"This is neat."];
- NSString *regexString = @"//b(//w+)//b";
- NSString *replaceWithString = @"{$1}";
- NSUInteger replacedCount = 0UL;
- replacedCount = [mutableString replaceOccurrencesOfRegex:regexString withString:replaceWithString];
- NSLog(@"count: %lu string: '%@'", (u_long)replacedCount, mutableString);
- // 2008-07-01 21:25:43.433 test[69689:813] count: 3 string: '{This} {is} {neat}.'
4.用于拆分,返回一个拆分后的字符串数组
- NSString *searchString = @ "This is neat." ;
- NSString *regexString = @"//s+" ;
- NSArray *splitArray = NULL;
- splitArray = [searchString componentsSeparatedByRegex:regexString];
- // splitArray == { @"This", @"is", @"neat." }
- NSLog(@"splitArray: %@" , splitArray);
- NSString *searchString = @"This is neat.";
- NSString *regexString = @"//s+";
- NSArray *splitArray = NULL;
- splitArray = [searchString componentsSeparatedByRegex:regexString];
- // splitArray == { @"This", @"is", @"neat." }
- NSLog(@"splitArray: %@", splitArray);
5.返回所有匹配的字符串数组,这个例子中虽然有多个括号,但是 componentsMatchedByRegex不管
- NSString *searchString = @ "$10.23, $1024.42, $3099" ;
- NSString *regexString = @"//$((//d+)(?://.(//d+)|//.?))" ;
- NSArray *matchArray = NULL;
- matchArray = [searchString componentsMatchedByRegex:regexString];
- // matchArray == { @"$10.23", @"$1024.42", @"$3099" };
- NSLog(@"matchArray: %@" , matchArray);
- 6.返回所有匹配的字符串数组处理所有的括号
- NSString *searchString = @"$10.23, $1024.42, $3099" ;
- NSString *regexString = @"//$((//d+)(?://.(//d+)|//.?))" ;
- NSArray *capturesArray = NULL;
- capturesArray = [searchString arrayOfCaptureComponentsMatchedByRegex:regexString];
- /* capturesArray ==
- [NSArray arrayWithObjects:
- [NSArray arrayWithObjects: @"$10.23", @"10.23", @"10", @"23", NULL],
- [NSArray arrayWithObjects:@"$1024.42", @"1024.42", @"1024", @"42", NULL],
- [NSArray arrayWithObjects: @"$3099", @"3099", @"3099", @"", NULL],
- NULL];
- */
- NSLog(@"capturesArray: %@" , capturesArray);
- 输出结果:
- shell% ./capturesArray↵
- 2009-05-06 03:25:46.852 capturesArray[69981:10b] capturesArray: (
- (
- "$10.23" ,
- "10.23" ,
- 10,
- 23
- ),
- (
- "$1024.42" ,
- "1024.42" ,
- 1024,
- 42
- ),
- (
- "$3099" ,
- 3099,
- 3099,
- ""
- )
- )
- NSString *searchString = @"$10.23, $1024.42, $3099";
- NSString *regexString = @"//$((//d+)(?://.(//d+)|//.?))";
- NSArray *matchArray = NULL;
- matchArray = [searchString componentsMatchedByRegex:regexString];
- // matchArray == { @"$10.23", @"$1024.42", @"$3099" };
- NSLog(@"matchArray: %@", matchArray);
- 6.返回所有匹配的字符串数组处理所有的括号
- NSString *searchString = @"$10.23, $1024.42, $3099";
- NSString *regexString = @"//$((//d+)(?://.(//d+)|//.?))";
- NSArray *capturesArray = NULL;
- capturesArray = [searchString arrayOfCaptureComponentsMatchedByRegex:regexString];
- /* capturesArray ==
- [NSArray arrayWithObjects:
- [NSArray arrayWithObjects: @"$10.23", @"10.23", @"10", @"23", NULL],
- [NSArray arrayWithObjects:@"$1024.42", @"1024.42", @"1024", @"42", NULL],
- [NSArray arrayWithObjects: @"$3099", @"3099", @"3099", @"", NULL],
- NULL];
- */
- NSLog(@"capturesArray: %@", capturesArray);
- 输出结果:
- shell% ./capturesArray↵
- 2009-05-06 03:25:46.852 capturesArray[69981:10b] capturesArray: (
- (
- "$10.23",
- "10.23",
- 10,
- 23
- ),
- (
- "$1024.42",
- "1024.42",
- 1024,
- 42
- ),
- (
- "$3099",
- 3099,
- 3099,
- ""
- )
- )
iOS中使用RegexKitLite来试用正则表达式的更多相关文章
- iOS中使用RegexKitLite来试用正则表达式 使用ARC 20个错误解决办法
You can also disable the ARC for the RegexKitLite only by adding a flag: select the project -> YO ...
- 正则表达式在iOS中的运用
1.什么是正则表达式 正则表达式,又称正规表示法,是对字符串操作的一种逻辑公式.正则表达式可以检测给定的字符串是否符合我们定义的逻辑,也可以从字符串中获取我们想要的特定部分.它可以迅速地用极简单的方式 ...
- iOS中3种正则表达式的使用与比较
正则表达式在用户注册和登录中应用很广,通过正则表达式可以判断用户输入的数据正确与否. 在iOS4.0以前开发者一般是通过谓词(NSPredicate)和加入正则表达式的第三方库(如:RegexKitL ...
- iOS中运用正则表达式
iOS中运用正则表达式来匹配短信验证码,电话号码,邮箱等是比较常见的. 在iOS中运用正则表达式主要有三种方式: -:通过谓词下面是实例代码: - (BOOL)regularExpresionWith ...
- iOS中使用正则
一.什么是正则表达式 正则表达式,又称正规表示法,是对字符串操作的一种逻辑公式.正则表达式可以检测给定的字符串是否符合我们定义的逻辑,也可以从字符串中获取我们想要的特定部分.它可以迅速地用极简单的方式 ...
- iOS 中的 NSTimer
iOS 中的 NSTimer NSTimer fire 我们先用 NSTimer 来做个简单的计时器,每隔5秒钟在控制台输出 Fire .比较想当然的做法是这样的: @interface Detail ...
- iOS 中的Push Notifications简单实现(APNS)
Android中的通知只有一种,就是Local Notifications,而iOS中除了Local Notifications外,还有一种Push Notifications.ios的这2种noti ...
- iOS中引用计数内存管理机制分析
在 iOS 中引用计数是内存的管理方式,虽然在 iOS5 版本中,已经支持了自动引用计数管理模式,但理解它的运行方式有助于我们了解程序的运行原理,有助于 debug 程序. 操作系统的内存管理分成堆和 ...
- 关于ios中的文本操作-简介
来源:About Text Handling in iOS 官方文档 iOS平台为我们提供了许多在app中展示文本和让用户编辑文本的方式.同时,它也允许你在app视图中展示格式化的文本和网页内容.你可 ...
随机推荐
- JMeter出现“the target server failed to respond“的解决办法
今天用jmeter压测执行过程中遇到一个报错如下: 解决方案如下: 1. 修改执行计划中,HTTP请求的Implementation为HttpClient4. 2. 保存执行计划 3. 修改JMete ...
- Mybatis 接口传入多个参数 xml怎么接收
mybatis 在接口上传入多个参数 1.如果传入的参数类型一样. Map<String, String> queryDkpayBindBankCidByOriBindAndBankCid ...
- DDD领域模型企业级系统(三)
相关代码: public static void ShowArray() { //数据源 int[] arrayas = new int[] { 1, 2, 3, 4 }; //创建查询 var qu ...
- AndroidManifest.xml中android:configChanges的简介
程序在运行时,一些设备的配置可能会改变,如:横竖屏的切换.键盘的可用性等,这样的事情一发生,Activity会重新启动,其中的过程是:在销毁之前会先 called onSaveInstanceStat ...
- .NetCore中使用ExceptionLess记录Polly中的操作异常日志
结合上一篇文章我写了一个demo测试下 重试2次 _polly.PollyRetry<Exception>(()=>_demoQuery.GetTestAOPAsync(), ); ...
- Codeforces 466E Information Graph
Information Graph 把询问离线之后就能随便搞了, 去check一下是不是祖先, 可以用倍增也能用dfs序. #include<bits/stdc++.h> #define ...
- Django -- settings 详解(转)
Django -- settings 详解 Django settings详解 1.基础 DJANGO_SETTING_MODULE环境变量:让settings模块被包含到python可以找到的目 ...
- iOS 11开发教程(十四)iOS11应用代码添加视图
iOS 11开发教程(十四)iOS11应用代码添加视图 如果开发者想要使用代码为主视图添加视图,该怎么办呢.以下将为开发者解决这一问题.要使用代码为主视图添加视图需要实现3个步骤. (1)实例化视图对 ...
- Xamarin iOS教程之添加和定制视图
Xamarin iOS教程之添加和定制视图 Xamarin iOS用户界面——视图 在iPhone或者iPad中,用户看到的摸到的都是视图.视图是用户界面的重要组成元素.例如,想要让用户实现文本输入时 ...
- 【转】让你彻底搞懂websocket
一.websocket与http WebSocket是HTML5出的东西(协议),也就是说HTTP协议没有变化,或者说没关系,但HTTP是不支持持久连接的(长连接,循环连接的不算) 首先HTTP有 1 ...