1

我想在 之间取字符串",但是正则表达式匹配的时间太长。

代码如下:

NSRegularExpression *regexp =
[NSRegularExpression regularExpressionWithPattern:
 @"\".?\"" options:0 error:&error];

字符串匹配如下:

what_i_want" "what_I_do_not_want

你知道,我只想拿:

what_i_want

谢谢你的帮助。

4

2 回答 2

2

请改用以下内容@"\"[^\"]+\""

于 2012-08-22T01:13:18.790 回答
0

我相信你想使用正则表达式模式@"\".*?\""

于 2012-08-22T01:37:08.667 回答