所以我有一个字符串:

users/9881570/?access_token=

我尝试与正则表达式匹配:
 NSRegularExpression * regex = [NSRegularExpression regularExpressionWithPattern:@"users/\\d/?access_token=" options:NSRegularExpressionCaseInsensitive error:&error];

        NSArray* wordArray = [regex matchesInString:self.currentRequestURL_
                                            options:0 range:NSMakeRange(0, [self.currentRequestURL_ length])];

但是,wordArray的计数为0。为什么不匹配?

最佳答案

一方面,您需要转义问号,而在\ d之后,则需要加号(+)表示1个或多个数字。现在,您只需要寻找一位数字。

@"users/\\d+/\\?access_token="

关于objective-c - NSRegularExpression不匹配,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10828317/

10-12 04:36