iphone正则表达式的简单使用
2014-12-08来源:易贤网

在 4.0 之后,系统就有了它自己的类(nsregularexpression,nsregularexpression)来使用正则表达式,,之前都是要添加第三方类库 regexkitlite 来使用

这两个类的简单使用:

nsstring *str = @3sdfh*odsi;

//匹配第一个字符是数字

nsregularexpression *regex1 = [nsregularexpression regularexpressionwithpattern:@bd.* options:0 error:nil];

if (regex1 != nil) {

nstextcheckingresult *result1 = [regex1 firstmatchinstring:str options:0 range:nsmakerange(0, [str length])];

if (result1) {

nslog(@第一个是数字);

}else{

nslog(@第一个不是数字);

}

}

//匹配特殊字符 w (w是大写)匹配任意不是字母,数字,下划线,汉字的字符

nsregularexpression *regex2 = [nsregularexpression regularexpressionwithpattern:@.*w.* options:0 error:nil];

if (regex2) {

nstextcheckingresult *result2 = [regex2 firstmatchinstring:str options:0 range:nsmakerange(0, [str length])];

if (result2) {

nslog(@有特殊字符);

}else{

nslog(@没有特殊字符);

}

}

更多信息请查看IT技术专栏

推荐信息