// Created by 李东旭 on 16/1/22. // Copyright © 2016年 李东旭. All rights reserved. // #import <UIKit/UIKit.h> #import "ViewController.h" @interface ViewCont
分类:
移动开发 时间:
2016-03-03 22:51:51
阅读次数:
177
1. 不可变字符串 (content 是不可变) NSRegularExpression *regularExpression = [NSRegularExpression regularExpressionWithPattern: @"<(/{0,})div(.{0,})>" options:0
分类:
移动开发 时间:
2016-02-01 13:57:03
阅读次数:
157
正则表达式使用步骤: 1. 创建正则表达式对象, 设置约束条件; 1 NSString *pattern = @"\\d{1,3}"; 2 NSRegularExpression *regex = [[NSRegularExpression alloc] initWithPattern:patter
分类:
其他好文 时间:
2016-01-29 20:51:19
阅读次数:
248
// Created by 李东旭 on 16/1/22.// Copyright © 2016年 李东旭. All rights reserved.// #import #import "ViewController.h" @interface ViewController () @end...
分类:
移动开发 时间:
2016-01-24 00:36:30
阅读次数:
157
参考链接:http://www.cocoachina.com/industry/20140321/8024.html NSPredicateCocoa提供了一个NSPredicate类,它用来指定过滤器的条件 初始化方法+(NSPredicate*)predicateWithFormat:(NSSt...
分类:
移动开发 时间:
2015-09-21 23:40:22
阅读次数:
320
struct?RegexHelper?{
????????let?regex:?NSRegularExpression?
????????init(_?pattern:?String)?{
????????????var?error:?NSError?
????????????r...
分类:
编程语言 时间:
2015-08-28 17:55:21
阅读次数:
266
找的资料以备以后回头看网址是:http://www.raywenderlich.com/86205/nsregularexpression-swift-tutorial
分类:
其他好文 时间:
2015-07-28 22:33:42
阅读次数:
97
1. 下面一个简单的使用正则表达式的一个例子:NSRegularExpression类-(void)parseString{//组装一个字符串,需要把里面的网址解析出来NSString*urlString=@"sfdsfhttp://www.baidu.com";//NSRegularExpress...
分类:
移动开发 时间:
2015-07-27 10:55:25
阅读次数:
121
NSString * content = resultDic[@"content"][0]; NSRegularExpression *regularExpretion=[NSRegularExpression regularExpressionWithPattern:...
分类:
Web程序 时间:
2015-07-17 20:34:19
阅读次数:
134
在playground内写入以下代码,正则关键字跟其它语言的没什么区别class Regex { let internalExpression:NSRegularExpression let pattern:String init(pattern:String) { ...
分类:
编程语言 时间:
2015-07-11 11:54:12
阅读次数:
393