标题 | iphone正则表达式的简单使用 |
内容 | 在 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(@没有特殊字符); } } |
随便看 |
|
在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。