|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] ResultTreeFrag to String
Hi, there,
When I use XSLT (XALAN 1.1) to process the XML with mixed elements, e.g.
<?xml version="1.0" standalone="yes" ?>
<Lease>
<Lessee>ABC Industries</Lessee>
agrees to lease the property at
<Address>123 Main St., Chicago, IL</Address>
from
<Lessor>XYZ Properties</Lessor>
for a term of not less than
<LeaseTerm TimeUnit="Months">18</LeaseTerm>
at a cost of
<Price Currency="USD" TimeUnit="Months">1000</Price>
.
</Lease>
If the node has a text child, I will get the sub-tree (String
representation) of the node, and pass it to a Java extenstion.
<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" >
<xsl:template match="/">
<xsl:apply-templates />
Successful!!!!!
</xsl:template>
<xsl:template match="*[text()]">
<xsl:variable name="fulltext">
<xsl:copy-of select="." />
</xsl:variable>
<xsl:copy-of select="$fulltext" />
</xsl:template>
</xsl:stylesheet>
Here the variable $fulltext has the type ResultTreeFrag, however, what I
want is only the String value like:
<Lease>
<Lessee>ABC Industries</Lessee>
agrees to lease the property at
<Address>123 Main St., Chicago, IL</Address>
from
<Lessor>XYZ Properties</Lessor>
for a term of not less than
<LeaseTerm TimeUnit="Months">18</LeaseTerm>
at a cost of
<Price Currency="USD" TimeUnit="Months">1000</Price>
.
</Lease>
Is there any way to approach this? Thanks!
Honglin
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








