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

正则表达式中支持[ ]等转义词

时间:2014-11-13 16:04:07      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   使用   sp   on   问题   bs   as   

问题,我想查找诸如13[attach]的字符串(前面数字不定),在如下构建正则时失败,因为在ios中不支持\[转义词,需要使用\\u005B替代

NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[0-9]+\[/attach\]" options:

NSRegularExpressionCaseInsensitive

 error:nil];

 

需要改为

NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[0-9]+\\u005B/attach\]" options:

NSRegularExpressionCaseInsensitive

 error:nil];

正则表达式中支持[ ]等转义词

标签:io   ar   os   使用   sp   on   问题   bs   as   

原文地址:http://www.cnblogs.com/ftrako/p/4095140.html

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