4

有没有一种方法可以NSRegularExpression用来指定您要进行区分大小写的搜索?我正在尝试匹配下面文本中的大写 TAG“ACL”。我使用的模式很简单:

// Pattern
[A-Z]+

// SearchText
<td align=\"left\" nowrap><font face=\"courier, monospace\" size=\"-1\">ACL*</font></td>

// Code:
NSString *textBuffer = @"<td align=\"left\" nowrap><font face=\"courier, monospace\" size=\"-1\">ACL*</font></td>";
NSString *pattern = @"([A-Z]+)";
NSRegularExpression *regExp = [NSRegularExpression regularExpressionWithPattern:pattern options:NSRegularExpressionCaseInsensitive error:nil];
NSTextCheckingResult *result = [regExp firstMatchInString:textBuffer options:0 range:NSMakeRange(0, [textBuffer length])];
NSLog(@"OBJECT CLASS: %@", [textBuffer substringWithRange:[result range]]);

输出:(在不区分大小写的情况下,我得到了预期的第一个“td”,而我真正想要的是“ACL”

我知道这NSRegularExpressionCaseInsensitive是错误的,我希望会有一个NSRegularExpressionCaseSensitive. 还有一个 flagOption?(i)也指定了不区分大小写的搜索,但同样没有区分大小写。我错过了什么?

4

1 回答 1

12

区分大小写是默认设置。不要把不敏感的标志放在那里。

于 2012-02-08T17:07:58.377 回答