xsl-list
[Top] [All Lists]

RE: manipulating string

2005-09-16 14:52:42
 

I have an XML which looks like this:

<item id="6902" sort="0">
      <name>Industrial Stripe Shirt</name>
      <description><![CDATA[
              <ul><li> TouchTex</li>
              <li> Convertible</li>
              <li> Pockets <br/>with pencil</li></ul>]]>
      </description>
</item>

Notice that description is CDATA and has some html
tags. 

Sigh. The CDATA section doesn't contain html tags. The purpose of CDATA is
to say "this stuff might look like markup, but it isn't to be treated as
such". If you want it treated as markup, don't put it in CDATA.

What you have to do is to extract the text from the CDATA section and parse
it as XML. Saxon has an extension function saxon:parse() to achieve that
(because lots of people do this, hence the sigh).

Michael Kay
http://www.saxonica.com/



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



<Prev in Thread] Current Thread [Next in Thread>