Is there a quick way to take this block of XML and extract the value of "version"?
<xml>
<creator version='1.0'>
<program>BULK_EXTRACTOR</program>
<version>1.0.3</version>
<build_environment>
<compiler>GCC 4.2</compiler>
<compilation_date>2011-09-27T11:56:35</compilation_date>
<library name="afflib" version="3.6.12"></library>
<library name="libewf" version="20100226"></library>
</build_environment>
</creator>
</xml>
I know that I can do this with Python's Beautiful Soup, but I'm look for a simple way to do it with the DOM.
Thanks!