Search Results

1
vote
1answer
193 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>&l …
0
votes

How iterate xml-nodes with Groovy ?

it.@dueDate is referencing a "dueDate" attribute, not node. Second, you're looking for "2007-02-01..." in your code, which should have been "2007-02-11..." to match an actual node in your input XM …