xsl-list
[Top] [All Lists]

[xsl] Handling elements which is inside CDATA in input XML

2010-11-01 07:30:34
Hi, Experts

I need to remove the span tag which is inside the CDATA in input XML. Could 
anyone suggest me how to handle CDATA in XSLT Transform for the below?

Input XML:

==========

<?xml version="1.0" encoding="utf-8"?>

<quiz>

   <question><![CDATA[<span class="question">1. Biochemistry is based on the chemistry of 
which element?</span>]]></question>

</quiz>
XSLT:

=====

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0"> <xsl:output method="html"/> <xsl:template match="quiz"><html><xsl:apply-templates/></html></xsl:template>
   <xsl:template match="question">

       <p><xsl:apply-templates/></p>

</xsl:template>
</xsl:stylesheet>

Current HTML Output

===================

<html> <p>&lt;span class="question"&gt;1. Biochemistry is based on the chemistry of which element?&lt;/span&gt;</p>
</html>

Expected HTML Output:

=====================

<html>
  <p>1. Biochemistry is based on the chemistry of which element?</p>

</html>

Regards,

Ram Kumar V.



===========================================================
***Disclaimer***


This email, and any attachments ("this email"), is confidential. If you are not 
the addressee please tell the sender immediately, and destroy this email without using, 
sending or storing it. Any opinions, express or implied, in this email, are those of the 
sender, and are not necessarily approved by the company.  Except as expressly stated, 
this e-mail should not be regarded as an offer, solicitation, recommendation or agreement 
to buy or sell products or services, or to enter into any contract. E-mail transmissions 
are not secure and may suffer errors, viruses, delay, interception and amendment. The 
company does not accept liability for damage caused by any of the foregoing.

ALL INCOMING AND OUTGOING MAILS MAY BE MONITORED BY THE COMPANY.
============================================================

--~------------------------------------------------------------------
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>
--~--