in reply to Re: xml::xslt xpath bug?
in thread xml::xslt xpath bug?
<xsl:for-each select='/PLMXML/Form[@id='id24']'> <xsl:value-of select="@id"/> </xsl:for-each> returns: id36 <xsl:for-each select="/PLMXML/Form[@id="id24"]"> <xsl:value-of select="@id"/> </xsl:for-each> returns: id36 <xsl:for-each select='/PLMXML/Form[@id="id24"]'> <xsl:value-of select="@id"/> </xsl:for-each> returns: id36 <xsl:for-each select="/PLMXML/Form[@id='id24']"> <xsl:value-of select="@id"/> </xsl:for-each> returns: id36
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: xml::xslt xpath bug?
by ikegami (Patriarch) on Jul 07, 2009 at 16:32 UTC | |
by Anonymous Monk on Jul 07, 2009 at 16:42 UTC | |
by ikegami (Patriarch) on Jul 07, 2009 at 16:48 UTC |