Jul 8, 2005 #1 yahoo182 Programmer Jul 5, 2005 70 CA Hi there, There is an xml element that has quotes around it like so: <book>"the old boy"</book> Is it possibel to remove to quote before displaying the value of this elemnt with xsl ?
Hi there, There is an xml element that has quotes around it like so: <book>"the old boy"</book> Is it possibel to remove to quote before displaying the value of this elemnt with xsl ?
Jul 11, 2005 #2 JontyMC Programmer Nov 26, 2001 1,276 GB One way would be: Code: <xsl:value-of select="substring(book, 2, string-length(book)-2)"/> Jon "Asteroids do not concern me, Admiral. I want that ship, not excuses. Upvote 0 Downvote
One way would be: Code: <xsl:value-of select="substring(book, 2, string-length(book)-2)"/> Jon "Asteroids do not concern me, Admiral. I want that ship, not excuses.