vote up 0 vote down star

I want to parse an HTML document and extract a certain div block that can be repeated.

I've managed to extract THE FIRST occurrence of the block, but I cant figure out how to get the next.

This is my code so far:

    	    String inputStr = HTTPGetter.get("http://someurl");
	    String patternStr ="<div class=\"MY-CLASS\">(.*?)</div>";
	    // Compile and use regular expression

	    Pattern pattern = Pattern.compile(patternStr);
	    Matcher matcher = pattern.matcher(inputStr);
	    boolean matchFound = matcher.find();

	    if (matchFound) {
	        // Get all groups for this match
	        for (int i=0; i<=matcher.groupCount(); i++) {
	            String groupStr = matcher.group(i);
		    System.out.println("Group found:\n"+groupStr);
	        }
	    } else {
	    	System.out.println("Not found");
	    }

The document I'm parsing has more than one div block of class MY-CLASS. I want to get all of them.

How can I do that?

flag

67% accept rate

4 Answers

vote up 4 vote down check

Just use find() in a while loop:

while (matcher.find()) {
    System.out.println("Group found:\n"+matcher.group(1));
}

It's the matches you need to iterate through, not the capture groups.

link|flag
vote up 4 vote down

Are you sure that you do not want to use an xml parser? Regular expressions are really not suitable for non-regular languages like xml.

link|flag
That would only work if the document was XHTML. – JG Sep 8 at 12:54
4  
There are also plenty of HTML parsers: stackoverflow.com/search?q=java+html+parser/… – Adam Paynter Sep 8 at 12:55
vote up 1 vote down

I would strongly recommend against using regexps for all but the simplest cases, since HTML is not regular and there are numerous edge cases to trip up your expressions (see numerous answers passim).

Take a look at JTidy, which will parse the HTML and present a DOM interface for you to interrogate.

link|flag
vote up 0 vote down

how can I praser nested div tags using thing code i can parser html page and extract single div tag content but when page content nested div tag. please con any one tell me how to sol this problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.