[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: processing of xml embedded in string

Subject: Re: processing of xml embedded in string
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Mon, 31 Mar 2008 14:52:35 +0200
Re:  processing of xml embedded in string
Christian Wittern wrote:

What I want to do is something like:

 <xsl:template match="str[@name='textfield']">
     <xsl:variable name="s">
     <xsl:value-of select="." disable-output-escaping="yes"/>
     </xsl:variable>
     <xsl:apply-templates select="$s"/>

</xsl:template>

and then have another template that matches the content:


<xsl:template match="tei:p">

Is that XSLT 1.0 or 2.0? With XSLT 1.0 the value of variable s is a result tree fragment and you would first need to use an extension function (usually exsl:node-set($s)) to convert that to a node-set, then you can use e.g.
<xsl:apply-templates select="exsl:node-set($s)/*"/>


--

	Martin Honnen
	http://JavaScript.FAQTs.com/

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2011 All Rights Reserved.