vote up 1 vote down star

Is there a way to have XmlSlurper get arbitrary elements through a variable? e.g. so I can do something like input file:

<file>
    <record name="some record" />
    <record name="some other record" />
</file>

def xml = new XmlSlurper().parse(inputFile)
String foo = "record"
return xml.{foo}.size()

I've tried using {} and ${} and () how do I escape variables like that? Or isn't there a way? and is it possible to use results from closures as the arguments as well? So I could do something like

String foo = file.record
int numRecords = xml.{foo.find(/.\w+$/)}
flag

1 Answer

vote up 1 vote down check

import groovy.xml.*

def xmltxt = """<file>
    <record name="some record" />
    <record name="some other record" />
</file>"""

def xml = new XmlSlurper().parseText(xmltxt)
String foo = "record"
return xml."${foo}".size()
link|flag
This doesn't work for elements not immediate children of the root. Observe: def xmltxt = """ <file> <something> <record name="some record" /> <record name="some other record" /> </something> </file> """ def xml = new XmlSlurper().parseText(xmltxt) String foo = "something.record" return xml."${foo}".size() Any other suggestions? – Keegan Sep 11 at 23:11
I don't know of any good way, you could split the string: def aNode = xml foo.split("\\.").each { aNode = aNode."${it}" } return aNode.size() – John Wagenleitner Sep 11 at 23:35
Yep, chopping the String up works, thanks :) – Keegan Sep 14 at 14:53

Your Answer

Get an OpenID
or

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