Parsing HTML NSRegularExpression

天大地大妈咪最大 提交于 2019-12-04 02:33:17

问题


i'm trying to parse an HTML page using NSRegularExpressions.. The page is a repetition of this html code:

<div class="fact" id="fact66">STRING THAT I WANT</div> <div class="vote">
<a href="index.php?p=detail_fact&fact=106">#106</a> &nbsp; &nbsp; 
<span id="p106">246080 / 8.59  </span> &nbsp; &nbsp;
<span id="f106" class="vote2">
<a href="#" onclick="xajax_voter(106,3); return false;">(+++)</a> 
<a href="#" onclick="xajax_voter(106,2); return false;">(++)</a>  
<a href="#" onclick="xajax_voter(106,1); return false;">(+)</a> 
<a href="#" onclick="xajax_berk(106); return false;">(-)</a></span>
<span id="ve106"></span>
</div>

So, i'ld like to get the string between the div

 <div class="fact" id="fact66">STRING THAT I WANT</div>

So i made a regex that looks like this

<div class="fact" id="fact[0-9].*\">(.*)</div>

Now, in my code, i implement it using this:

    NSString *htmlString = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.myurl.com"] encoding:NSASCIIStringEncoding error:nil];
NSRegularExpression* myRegex = [[NSRegularExpression alloc] initWithPattern:@"<div class=\"fact\" id=\"fact[0-9].*\">(.*)</div>\n" options:0 error:nil];
    [myRegex enumerateMatchesInString:htmlString options:0 range:NSMakeRange(0, [htmlString length]) usingBlock:^(NSTextCheckingResult *match, NSMatchingFlags flags, BOOL *stop) {
        NSRange range = [match rangeAtIndex:1];
        NSString *string =[htmlString substringWithRange:range];
        NSLog(string);
    }];

But it returns nothing... I tested my regex in Java and PHP and it works great, what am i doing wrong ?

Thanks


回答1:


Try using this regex:

 @"<div class=\"fact\" id=\"fact[0-9]*\">([^<]*)</div>"

Regex:

fact[0-9].*

means: fact followed by a number between 0 and 9, followed by any character repeated any number of times.

I also suggest using:

([^<]*)

instead of

(.*)

to match between the two divs so to deal with regex greediness, or alternatively:

(.*?)

(? will make the regex non-greedy, so it stops at the first instance of </div>.



来源:https://stackoverflow.com/questions/10522008/parsing-html-nsregularexpression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!