0

我想在字符串中搜索模式。在下面的代码中,模式字符串 '*' 可以是任何字符。

我从这里得到了这个示例代码,但它对我不起作用。

NSString *string;
NSString *pattern;
NSRegularExpression *regex;


string = @"img=img_1.png or it can be img=img.png";
pattern = @"img=*.png";

regex = [NSRegularExpression
         regularExpressionWithPattern:pattern
         options:NSRegularExpressionCaseInsensitive
         error:nil];

NSArray *matches = [regex matchesInString:string
                                  options:0
                                    range:NSMakeRange(0, [string length])];

NSLog(@"matches - %@", matches);

for (NSTextCheckingResult *match in matches)
{
    NSRange range = [match rangeAtIndex:1];
    NSLog(@"match: %@", [string substringWithRange:range]);
}

我希望 optput 字符串为 img_1.png & img.png

4

2 回答 2

1

将您的模式更改为:

pattern = @"img=(.*?).png";
于 2013-01-09T09:59:50.093 回答
0

这种模式可以很好地工作:

NSString *pattern = @"(img=img[\\S]*\\.png)";

比赛是:

0 : {0, 13} - img=img_1.png
1 : {27, 11} - img=img.png

或者

用另一种模式:

NSString *pattern = @"(img[^=][\\S]*png)";

比赛是(没有img=部分):

0 : {4, 9} - img_1.png
1 : {31, 7} - img.png
于 2013-01-09T10:27:42.120 回答