转:http://blog.csdn.net/nullcn/article/details/6338592

准备工作,下载RegexKitLite 软件包,解压后有2个文件,需要加载到project中。

然后还要加载framework libicucore.dylib ,因为RegexKitLite是调用这个里面的API,苹果规定过不能使用私有的api和没有发布的api。实际上RegexKitLite对NSString做了扩展,目前只支持NSString,对我来说也够了...

基本使用的例子(更多信息参看 官方文档) 
1.

  1. NSString *searchString = @ "This is neat." ;
  2. NSString *regexString  = @"(//w+)//s+(//w+)//s+(//w+)" ;
  3. NSRange   matchedRange = NSMakeRange(NSNotFound, 0UL);
  4. NSError  *error        = NULL;
  5. matchedRange = [searchString rangeOfRegex:regexString options:RKLNoOptions inRange:searchRange capture:2L error:&error];
  6. NSLog(@"matchedRange: %@" , NSStringFromRange(matchedRange));
  7. // 2008-03-18 03:51:16.530 test[51583:813] matchedRange: {5, 2},//匹配到‘is‘
  8. NSString *matchedString = [searchString substringWithRange:matchedRange];
  9. NSLog(@"matchedString: '%@'" , matchedString);
  10. // 2008-03-18 03:51:16.532 test[51583:813] matchedString: 'is' //生成子字符串
  1. NSString *searchString = @"This is neat.";
  2. NSString *regexString  = @"(//w+)//s+(//w+)//s+(//w+)";
  3. NSRange   matchedRange = NSMakeRange(NSNotFound, 0UL);
  4. NSError  *error        = NULL;
  5. matchedRange = [searchString rangeOfRegex:regexString options:RKLNoOptions inRange:searchRange capture:2L error:&error];
  6. NSLog(@"matchedRange: %@", NSStringFromRange(matchedRange));
  7. // 2008-03-18 03:51:16.530 test[51583:813] matchedRange: {5, 2},//匹配到‘is‘
  8. NSString *matchedString = [searchString substringWithRange:matchedRange];
  9. NSLog(@"matchedString: '%@'", matchedString);
  10. // 2008-03-18 03:51:16.532 test[51583:813] matchedString: 'is' //生成子字符串

2.找到第一个匹配并返回一个NSString

  1. NSString *searchString  = @ "This is neat." ;
  2. NSString *regexString   = @"(//w+)//s+(//w+)//s+(//w+)" ;
  3. NSString *matchedString = [searchString stringByMatching:regexString capture:2L];
  4. NSLog(@"matchedString: '%@'" , matchedString);
  5. // 2008-03-18 03:53:42.949 test[51583:813] matchedString: 'is'
  1. NSString *searchString  = @"This is neat.";
  2. NSString *regexString   = @"(//w+)//s+(//w+)//s+(//w+)";
  3. NSString *matchedString = [searchString stringByMatching:regexString capture:2L];
  4. NSLog(@"matchedString: '%@'", matchedString);
  5. // 2008-03-18 03:53:42.949 test[51583:813] matchedString: 'is'

3.查找和替换,加括号和概念和Python中的一样,$1指代第一个括号中的内容

  1. NSString *searchString      = @ "This is neat." ;
  2. NSString *regexString       = @"//b(//w+)//b" ;
  3. NSString *replaceWithString = @"{$1}" ;
  4. NSString *replacedString    = NULL;
  5. replacedString = [searchString stringByReplacingOccurrencesOfRegex:regexString withString:replaceWithString];
  6. //NSMutableString可以直接替换,并返回替换的次数
  7. NSLog(@"replaced string: '%@'" , replacedString);
  8. // 2008-07-01 19:03:03.195 test[68775:813] replaced string: '{This} {is} {neat}.'
  9. NSMutableString *mutableString     = [NSMutableString stringWithString:@"This is neat." ];
  10. NSString        *regexString       = @"//b(//w+)//b" ;
  11. NSString        *replaceWithString = @"{$1}" ;
  12. NSUInteger       replacedCount     = 0UL;
  13. replacedCount = [mutableString replaceOccurrencesOfRegex:regexString withString:replaceWithString];
  14. NSLog(@"count: %lu string: '%@'" , (u_long)replacedCount, mutableString);
  15. // 2008-07-01 21:25:43.433 test[69689:813] count: 3 string: '{This} {is} {neat}.'
  1. NSString *searchString      = @"This is neat.";
  2. NSString *regexString       = @"//b(//w+)//b";
  3. NSString *replaceWithString = @"{$1}";
  4. NSString *replacedString    = NULL;
  5. replacedString = [searchString stringByReplacingOccurrencesOfRegex:regexString withString:replaceWithString];
  6. //NSMutableString可以直接替换,并返回替换的次数
  7. NSLog(@"replaced string: '%@'", replacedString);
  8. // 2008-07-01 19:03:03.195 test[68775:813] replaced string: '{This} {is} {neat}.'
  9. NSMutableString *mutableString     = [NSMutableString stringWithString:@"This is neat."];
  10. NSString        *regexString       = @"//b(//w+)//b";
  11. NSString        *replaceWithString = @"{$1}";
  12. NSUInteger       replacedCount     = 0UL;
  13. replacedCount = [mutableString replaceOccurrencesOfRegex:regexString withString:replaceWithString];
  14. NSLog(@"count: %lu string: '%@'", (u_long)replacedCount, mutableString);
  15. // 2008-07-01 21:25:43.433 test[69689:813] count: 3 string: '{This} {is} {neat}.'

4.用于拆分,返回一个拆分后的字符串数组

  1. NSString *searchString = @ "This is neat." ;
  2. NSString *regexString  = @"//s+" ;
  3. NSArray  *splitArray   = NULL;
  4. splitArray = [searchString componentsSeparatedByRegex:regexString];
  5. // splitArray == { @"This", @"is", @"neat." }
  6. NSLog(@"splitArray: %@" , splitArray);
  1. NSString *searchString = @"This is neat.";
  2. NSString *regexString  = @"//s+";
  3. NSArray  *splitArray   = NULL;
  4. splitArray = [searchString componentsSeparatedByRegex:regexString];
  5. // splitArray == { @"This", @"is", @"neat." }
  6. NSLog(@"splitArray: %@", splitArray);

5.返回所有匹配的字符串数组,这个例子中虽然有多个括号,但是 componentsMatchedByRegex不管

  1. NSString *searchString = @ "$10.23, $1024.42, $3099" ;
  2. NSString *regexString  = @"//$((//d+)(?://.(//d+)|//.?))" ;
  3. NSArray  *matchArray   = NULL;
  4. matchArray = [searchString componentsMatchedByRegex:regexString];
  5. // matchArray == { @"$10.23", @"$1024.42", @"$3099" };
  6. NSLog(@"matchArray: %@" , matchArray);
  7. 6.返回所有匹配的字符串数组处理所有的括号
  8. NSString *searchString  = @"$10.23, $1024.42, $3099" ;
  9. NSString *regexString   = @"//$((//d+)(?://.(//d+)|//.?))" ;
  10. NSArray  *capturesArray = NULL;
  11. capturesArray = [searchString arrayOfCaptureComponentsMatchedByRegex:regexString];
  12. /* capturesArray ==
  13. [NSArray arrayWithObjects:
  14. [NSArray arrayWithObjects:  @"$10.23",   @"10.23",   @"10", @"23", NULL],
  15. [NSArray arrayWithObjects:@"$1024.42", @"1024.42", @"1024", @"42", NULL],
  16. [NSArray arrayWithObjects:   @"$3099",    @"3099", @"3099",   @"", NULL],
  17. NULL];
  18. */
  19. NSLog(@"capturesArray: %@" , capturesArray);
  20. 输出结果:
  21. shell% ./capturesArray↵
  22. 2009-05-06 03:25:46.852 capturesArray[69981:10b] capturesArray: (
  23. (
  24. "$10.23" ,
  25. "10.23" ,
  26. 10,
  27. 23
  28. ),
  29. (
  30. "$1024.42" ,
  31. "1024.42" ,
  32. 1024,
  33. 42
  34. ),
  35. (
  36. "$3099" ,
  37. 3099,
  38. 3099,
  39. ""
  40. )
  41. )
  1. NSString *searchString = @"$10.23, $1024.42, $3099";
  2. NSString *regexString  = @"//$((//d+)(?://.(//d+)|//.?))";
  3. NSArray  *matchArray   = NULL;
  4. matchArray = [searchString componentsMatchedByRegex:regexString];
  5. // matchArray == { @"$10.23", @"$1024.42", @"$3099" };
  6. NSLog(@"matchArray: %@", matchArray);
  7. 6.返回所有匹配的字符串数组处理所有的括号
  8. NSString *searchString  = @"$10.23, $1024.42, $3099";
  9. NSString *regexString   = @"//$((//d+)(?://.(//d+)|//.?))";
  10. NSArray  *capturesArray = NULL;
  11. capturesArray = [searchString arrayOfCaptureComponentsMatchedByRegex:regexString];
  12. /* capturesArray ==
  13. [NSArray arrayWithObjects:
  14. [NSArray arrayWithObjects:  @"$10.23",   @"10.23",   @"10", @"23", NULL],
  15. [NSArray arrayWithObjects:@"$1024.42", @"1024.42", @"1024", @"42", NULL],
  16. [NSArray arrayWithObjects:   @"$3099",    @"3099", @"3099",   @"", NULL],
  17. NULL];
  18. */
  19. NSLog(@"capturesArray: %@", capturesArray);
  20. 输出结果:
  21. shell% ./capturesArray↵
  22. 2009-05-06 03:25:46.852 capturesArray[69981:10b] capturesArray: (
  23. (
  24. "$10.23",
  25. "10.23",
  26. 10,
  27. 23
  28. ),
  29. (
  30. "$1024.42",
  31. "1024.42",
  32. 1024,
  33. 42
  34. ),
  35. (
  36. "$3099",
  37. 3099,
  38. 3099,
  39. ""
  40. )
  41. )

iOS中使用RegexKitLite来试用正则表达式的更多相关文章

  1. iOS中使用RegexKitLite来试用正则表达式 使用ARC 20个错误解决办法

    You can also disable the ARC for the RegexKitLite only by adding a flag: select the project -> YO ...

  2. 正则表达式在iOS中的运用

    1.什么是正则表达式 正则表达式,又称正规表示法,是对字符串操作的一种逻辑公式.正则表达式可以检测给定的字符串是否符合我们定义的逻辑,也可以从字符串中获取我们想要的特定部分.它可以迅速地用极简单的方式 ...

  3. iOS中3种正则表达式的使用与比较

    正则表达式在用户注册和登录中应用很广,通过正则表达式可以判断用户输入的数据正确与否. 在iOS4.0以前开发者一般是通过谓词(NSPredicate)和加入正则表达式的第三方库(如:RegexKitL ...

  4. iOS中运用正则表达式

    iOS中运用正则表达式来匹配短信验证码,电话号码,邮箱等是比较常见的. 在iOS中运用正则表达式主要有三种方式: -:通过谓词下面是实例代码: - (BOOL)regularExpresionWith ...

  5. iOS中使用正则

    一.什么是正则表达式 正则表达式,又称正规表示法,是对字符串操作的一种逻辑公式.正则表达式可以检测给定的字符串是否符合我们定义的逻辑,也可以从字符串中获取我们想要的特定部分.它可以迅速地用极简单的方式 ...

  6. iOS 中的 NSTimer

    iOS 中的 NSTimer NSTimer fire 我们先用 NSTimer 来做个简单的计时器,每隔5秒钟在控制台输出 Fire .比较想当然的做法是这样的: @interface Detail ...

  7. iOS 中的Push Notifications简单实现(APNS)

    Android中的通知只有一种,就是Local Notifications,而iOS中除了Local Notifications外,还有一种Push Notifications.ios的这2种noti ...

  8. iOS中引用计数内存管理机制分析

    在 iOS 中引用计数是内存的管理方式,虽然在 iOS5 版本中,已经支持了自动引用计数管理模式,但理解它的运行方式有助于我们了解程序的运行原理,有助于 debug 程序. 操作系统的内存管理分成堆和 ...

  9. 关于ios中的文本操作-简介

    来源:About Text Handling in iOS 官方文档 iOS平台为我们提供了许多在app中展示文本和让用户编辑文本的方式.同时,它也允许你在app视图中展示格式化的文本和网页内容.你可 ...

随机推荐

  1. 修复 Tween.JS 的 onStop 设置无效

    Tween.js 个人认为还是一个比较不错的 缓动动画库,给作为学渣的我实现一些酷酷的动画带来了极大的遍历. 但是,今天突然发现特么设置onStop的回调函数居然没反应...... 作为一个渣渣只能一 ...

  2. js中的事件委托或是事件代理详解(转载)

    起因: 1.这是前端面试的经典题型,要去找工作的小伙伴看看还是有帮助的: 2.其实我一直都没弄明白,写这个一是为了备忘,二是给其他的知其然不知其所以然的小伙伴们以参考: 概述: 那什么叫事件委托呢?它 ...

  3. BZOJ 1305 dance跳舞(最大流+二分答案)

    题目链接:https://www.lydsy.com/JudgeOnline/problem.php?id=1305 解题思路:转自:https://blog.csdn.net/u012288458/ ...

  4. SOA 解惑

    SOA 解惑 SOA 不是一种技术,它是一种设计方法.最近一段时间我碰到了很多关于 SOA 的具有误导性的文章.尤其是,有些人混淆了 SOA 和诸如 BPM.ESB 以及复合事件处理 (CEP) 之类 ...

  5. MySQL一问一答

    一.问:如果有一张表,里面有个字段为id的自增主键,当已经向表里面插入了10条数据之后,删除了id为8,9,10的数据,再把mysql重启,之后再插入一条数据,那么这条数据的id值应该是多少,是8,还 ...

  6. [图解算法] 二分查找Binary-Search——<递归与分治策略>

    #include"iostream.h" int BinarySearch(int a[],int left,int right,const int& x) { if(le ...

  7. Java编程的逻辑 (4) - 整数的二进制表示与位运算

    ​本系列文章经补充和完善,已修订整理成书<Java编程的逻辑>,由机械工业出版社华章分社出版,于2018年1月上市热销,读者好评如潮!各大网店和书店有售,欢迎购买,京东自营链接:http: ...

  8. 洛谷P2017 [USACO09DEC]晕牛Dizzy Cows [拓扑排序]

    题目传送门 晕牛Dizzy Cows 题目背景 Hzwer 神犇最近又征服了一个国家,然后接下来却也遇见了一个难题. 题目描述 The cows have taken to racing each o ...

  9. html导出pdf的四种方式

    将html页面导出为pdf文件并打印,可以直接在windows下使用Ctrl + P,苹果下⌘ + P. 如果需要用代码实现,可以考虑jsPDF.iText.wkhtmltopdf等方式. 以下是三种 ...

  10. 初识PHP(一)

    做为一名合格的前端开发攻城狮,了解一门服务端语言是必须的,所以我选了php.都说学的第一门语言对第二门语言会产生较大的影响,确实,每当我看到一个php知识点时,就同时会想到这个知识点在Javascri ...