Subject: Re: How to retrieve value in xsl:value variable??
From: Steve Tinney <stinney@xxxxxxxxxxxxx>
Date: Sat, 19 Feb 2000 19:09:22 -0500
|
> several places in my doc. However,
> I would like to be able to retrieve the value using $atomname without
> invoking <xsl:value> call, i.e. is
I'm not quite sure why you want to do this. In general, <xsl:value-of>
is a perfectly good way to get the value of a variable. If you want to
use it in a string along with other things, you might want to know about
concat(). You could say: <xsl:value-of select="concat('This atom is
called ', $atomname, '.')/>, for example.
Steve
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|