0
votes
1answer
22 views
Using XmlSlurper: How to select sub-elements while iterating over a GPathResult
I am writing an HTML parser, which uses TagSoup to pass a well-formed structure to XMLSlurper.
Here's the generalised code:
def htmlText = """
<html>
<body>
<div i …
1
vote
1answer
179 views
Can generic XML by parsed as nicely as simple XML in Groovy?
Given a nice, simple XML structure, XmlSlurper() can allow me to read values from it very easily.
def xml = "<html><head><title>groovy</title></head> …
1
vote
2answers
340 views
How can I check for the existence of an element with Groovy’s XmlSlurper?
I'm trying to determine whether an XML element exists with Groovy's XmlSlurper. Is there a way to do this? For example:
<foo>
<bar/>
</foo>
How do I check …
3
votes
1answer
1k views
Groovy: Correct Syntax for XMLSlurper to find elements with a given attribute
Given a HTML file with the structure html->body->a bunch of divs what is the correct groovy statement to find all of the divs with a non blank tags attribute?
The following is not …
