使用正则表达式匹配[***]样式的字符串
2014-08-15来源:易贤网

代码如下:

- (NSUInteger)analyseRX:(NSString *)string withPatternString:(NSString *)patternString

{

// \\[[^\\]]+\\] 用以匹配字符串中所出现的 [*] 的个数

// <[^>]+> 用以匹配字符串中所出现的 <*> 的个数

if (string == nil)

{

return 0;

}

// 正则表达式

NSRegularExpression *regex = \

[NSRegularExpression regularExpressionWithPattern:patternString

options:NSRegularExpressionCaseInsensitive

error:nil];

// 执行相关匹配操作

NSRange range = NSMakeRange(0, [string length]);

NSUInteger numberOfMatches = [regex numberOfMatchesInString:string

options:0

range:range];

// 返回匹配的个数

return numberOfMatches;

}

比如,如果你想查询字符串中出现了几个[**]结构的字符串,就比如下面的字符串:

名单

很简单吧,你也可以替换相关字符串哦.

心得:

这种字符串里面查找出现了某种样式模板的字符串就用正则表达式吧,其实你也别无它法了:)

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

推荐信息