objective c regex以1或2位开头

时间:2012-08-08 13:31:44

标签: objective-c regex cocoa nspredicate

我需要正则表达式 前“ 17%折扣等等” 或“ 2%折扣等等等” 所以如果字符串以一个或两个数字开头,后跟百分号,空格和单词'off'

我试过

NSPredicate* test = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", @"^[0-9]{1,2}% off"];
if ( [test evaluateWithObject:candidate] )
{
.... etc..

但没有运气。

我很欣赏任何见解。

1 个答案:

答案 0 :(得分:1)

使用此命令行示例应用程序,它可以正常工作。

#import <Foundation/Foundation.h>

int main(int argc, const char * argv[])
{

    @autoreleasepool {

        NSArray *lines = @[ @"17% off etc.", @"2% off", @"off by 12%" ];
        NSPredicate* test = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", @"^[0-9]{1,2}% off.*"];

        [lines enumerateObjectsUsingBlock:^(NSString  *candidate, NSUInteger idx, BOOL *stop) {
            if ( [test evaluateWithObject:candidate] ){
                NSLog(@":)");
            } else{
                NSLog(@":(");
            }
        }];


    }
    return 0;
}

输出:

2012-08-08 15:46:16.213 regextest[1305:303] :)
2012-08-08 15:46:16.215 regextest[1305:303] :)
2012-08-08 15:46:16.215 regextest[1305:303] :(

如果该行包含更多字符,它应该看起来像

NSPredicate* test = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", @"^[0-9]{1,2}% off.*"];

.*表示可能存在任何数量的任何字符。