地址:http://regexkit.sourceforge.net/RegexKitLite/
正则表达式大家都知道。但是iPhone SDK居然当他不存在?这怎么能忍啊!果断用RegexKitLite。虽然叫的是Lite,但是功能很full。示例代码。
原文链接:https://www.f2er.com/regex/362327.html
- //findsphonenumberinformatnnn-nnn-nnnn
- NSString*regEx=@"[0-9]{3}-[0-9]{3}-[0-9]{4}";
- for(NSString*matchin[textView.textcomponentsMatchedByRegex:regEx]){
- NSLog(@"Phonenumberis%@",match);
- }