xsl-list
[Top] [All Lists]

Re: [xsl] Displaying element value in browser, which is inside CDATA in XML

2011-07-18 06:51:02
Ramkumar V wrote:

I want to display anchor element attribute value in browser, but it is in
CDATA.

Please suggest anyone how to display this value?


<bk:text><![CDATA[Psychologists acknowledge that, as in the heroism of Sully
Sullenberger, sometimes an individual&#8217;s best moments emerge<a
class="page_break" name="page7"></a>  amid the most difficult
circumstances.]]></bk:text>

  <xsl:template match="bk:text">
    <xsl:value-of select="." disable-output-escaping="yes"/>
  </xsl:template>
would output the contents of the 'bk:text' element and if the XSLT processor supports disable-output-escaping that would result in a text node plus an 'a' element plus a text node in the result.

Does that help? Or what exactly do you want to output, your subject says "element value", your text "element attribute value".




--

        Martin Honnen --- MVP Data Platform Development
        http://msmvps.com/blogs/martin_honnen/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--