Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 26th, 2009, 06:28 AM
Friend of Wrox
 
Join Date: Jun 2008
Posts: 291
Thanks: 9
Thanked 29 Times in 29 Posts
Default XSLT Variable output

I'm using XSLT 2.0 and Oxygen editor with Saxon 9B.

When I use the below template to the input <syntax> element, I get the output &lt;AID&gt;. Why don't I get the <test> element in the output? Any element given inside a variable cannot be printed. Is there any way to do it?

My XML snippet is shown below:

<Syntax>SET‑ATTR‑EQPT:[&lt;TID>]:&lt;AID>:&lt;CTAG>::[&lt;NTFCNCDE>],&lt;CONDTYPE>,[&lt;LOCN>],[&lt;DIRN>],,[&lt;SRVEFF>];</Syntax>

My template is :

<xsl:template match="Syntax">
<xsl:variable name="cmdSyntax">
<xsl:analyze-string select="." regex="^.*?:.*?:(.*?):.*$">
<xsl:matching-substring>
<test>
<xsl:value-of select="regex-group(1)"/>
</test>
</xsl:matching-substring>
</xsl:analyze-string>
</xsl:variable>
<xsl:value-of select="$cmdSyntax"></xsl:value-of>
</xsl:template>

My output is :

&lt;AID&gt;

Required output is :

<test>&lt;AID&gt;</test>

thanks in advance,
__________________
Rummy
 
Old March 26th, 2009, 06:45 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

The xsl:value-of instruction flattens its operand to a text node. You probably want xsl:copy-of.
__________________
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer\'s Reference
The Following User Says Thank You to mhkay For This Useful Post:
mrame (March 26th, 2009)
 
Old March 26th, 2009, 06:51 AM
Friend of Wrox
 
Join Date: Jun 2008
Posts: 291
Thanks: 9
Thanked 29 Times in 29 Posts
Default

Thanks a lot Michael. It worked.
__________________
Rummy





Similar Threads
Thread Thread Starter Forum Replies Last Post
XSLT to get hyperlinks in output ashv XSLT 2 December 7th, 2008 06:14 AM
assign XSLT variable to a wml variable arunagottimukkala XSLT 2 October 19th, 2007 05:15 AM
XSLT output with tags trinkets XSLT 22 November 14th, 2006 11:22 AM
How to avoid variable from getting in the output.. ahmed123 XSLT 1 July 21st, 2006 09:19 AM
XSLT Looks right, but no output Alderian72 XSLT 1 June 9th, 2005 08:47 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.