我想在 之间取字符串"
,但是正则表达式匹配的时间太长。
代码如下:
NSRegularExpression *regexp =
[NSRegularExpression regularExpressionWithPattern:
@"\".?\"" options:0 error:&error];
字符串匹配如下:
what_i_want" "what_I_do_not_want
你知道,我只想拿:
what_i_want
谢谢你的帮助。
我想在 之间取字符串"
,但是正则表达式匹配的时间太长。
代码如下:
NSRegularExpression *regexp =
[NSRegularExpression regularExpressionWithPattern:
@"\".?\"" options:0 error:&error];
字符串匹配如下:
what_i_want" "what_I_do_not_want
你知道,我只想拿:
what_i_want
谢谢你的帮助。