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 working:
def nodes …
1
vote
1answer
204 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></html>"
def …
1
vote
2answers
380 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 whether the bar …
0
votes
2answers
17 views
groovy XmlSlurper not parse my xml file
I have an xml, and I can't parse this file with xmlslurper.
Here a copy of my xml file :
<Entrezgene-Set>
<Entrezgene>
<Entrezgene_summary>The protein encoded by this gene is a …
0
votes
1answer
99 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 id="divId" …
