vote up 0 vote down star

What XPath do I use to query the info node in the xml below? I've tried different expressions in XMLSpy but nothing works.

<root xmlns="tempuri.org" xmlns:p="http://nonamespace.org/std/Name/2006-10-18/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<item xmlns="">
	<info>blah blah</info>
	<date>2009-07-27 00:00:00</date>
</item>

flag

1 Answer

vote up 0 vote down check

you can do it like this

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:a="tempuri.org">

<xsl:template match="/">
     <xsl:value-of select="a:root/item/info"/>
</xsl:template>
link|flag
I can't get that code-thingy to work in IE8. So I had to escape evertthing – Tommy Jul 27 at 8:44
Have a look at the little "help" box at the right of the editor. – Tomalak Jul 27 at 8:49
Okay, figured it out – Tommy Jul 27 at 10:11
That works great, thanks!!! Simple when you know how :) – horls Jul 27 at 10:56

Your Answer

Get an OpenID
or

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