我正在寻找一些有关在 iPhone 应用程序中使用的正则表达式的帮助。
我正在使用 NSRegularExpression。
NSString *string = @"[quote author=iffets12345 link=topic=36426.msg388088#msg388088 date=1294820175][quote author=fuzzylogic link=topic=36426.msg387976#msg387976 date=1294802623]Although it wouldn't come up too often in an English essay: MUM not mom!!!![/quote]Haha, EXACTLY![/quote]";
我有这个字符串,它只是论坛帖子的 BBCode。在这种情况下,报价中的报价。
NSRegularExpression *quoteRegex = [NSRegularExpression regularExpressionWithPattern:@"\\[quote author=(.*?) .*?\\](.*?)\\[\\/quote\\]"
options:NSRegularExpressionCaseInsensitive
error:&error];
这就是我用来解析它的正则表达式。
它在没有嵌套引号的普通 BBCode 上运行良好。但是当引号被嵌套时,这个正则表达式不能像我希望的那样工作。
在此特定字符串上运行正则表达式时,它将返回如下内容:
"[quote author=iffets12345 link=topic=36426.msg388088#msg388088 date=1294820175][quote author=fuzzylogic link=topic=36426.msg387976#msg387976 date=1294802623]Although it wouldn't come up too often in an English essay: MUM not mom!!!![/quote]
它不正确地匹配开始和结束引号标签。
谁能看到我错过了什么?谢谢。