我正在寻找文本中所有出现的字符串,但我不明白为什么代码不起作用。在正文中,出现了 2 处。
文本 :
<div class="infosLigneDetail pointer" onclick="javascript:toggleForfait('1');">
Alexandre OUICHER - Forfait Free illimité à 19,99 euros - 0627505460 <input
搜索字符串:
Alexandre OUICHER - Forfait Free illimité à 19,99 euros - 0627505460
正则表达式:
NSRegularExpression *regexpComptes = [NSRegularExpression regularExpressionWithPattern:@"(?<=javascript:toggleForfait('[0-9]');\">).*?(?=<input)" options:NSRegularExpressionSearch error:NULL];
NSArray *matchesComptes = [regexpComptes matchesInString:content
options:0
range:NSMakeRange(0, [content length])];
你知道问题出在哪里吗?