我有这个字符串:
NSString* yourString = @"(;GM[1]FF[4]SZ[19]AP[CGoban Pro:2.2]PW[Michael Redmond]WR[9p]DT[2010-12-12]KM[6.5]RE[B+0.5]AN[Michael Redmond]BK[1]C[toto : [test]]";
我有这个正则表达式:
NSRegularExpression* regex = [NSRegularExpression
regularExpressionWithPattern:@"((RU)|(KM)|(TM)|(OT)|(PW)|(PB)|(WR)|(BR)|(WR)|(DT)|(RE))\\[[\\w ]+\\]"
options:NSRegularExpressionCaseInsensitive
error:&error];
我不能用 \w 和 \ 获得数值。或仅 . 一无所有!任何人都可以帮助我吗?
谢谢