码迷,mamicode.com
首页 > 其他好文 > 详细

根据正则表达式过滤非法的字符串

时间:2017-03-01 12:44:00      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:option   actor   char   length   tco   match   字符串   nil   ssi   

//根据正则表达式过滤非法的字符串

+ (NSString *)filterCharactor:(NSString *)str withRegexString:(NSString *)regexStr

{

    

    NSError * error = nil;

    NSRegularExpression * expression = [NSRegularExpression regularExpressionWithPattern:regexStr options:NSRegularExpressionCaseInsensitive error:&error];

    NSString * last=[expression stringByReplacingMatchesInString:str options:NSMatchingReportCompletion range:NSMakeRange(0, str.length) withTemplate:@""];

    return last;

}

根据正则表达式过滤非法的字符串

标签:option   actor   char   length   tco   match   字符串   nil   ssi   

原文地址:http://www.cnblogs.com/VzhanggengD/p/6483394.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!