RE: [xsl] remove white space

Subject: RE: [xsl] remove white space
From: "Lincoln Mitchell" <lincoln@xxxxxxxxxxx>
Date: Thu, 23 Sep 2004 06:13:00 +0800
I had the same issue and resolved it using <xsl:text> in an <xsl:element> :
----
<xsl:element name="a">
	<xsl:attribute name="href">
		<xsl:value-of select="."/>
		<xsl:text>.htm</xsl:text>
	</xsl:attribute>
</xsl:element>
----
Linc

-----Original Message-----
From: Mark Williams [mailto:mark@xxxxxxxxxxx] 
Sent: Thursday, 23 September 2004 2:39 AM
To: XSL-List
Subject: [xsl] remove white space

Hi,

Is there any easy xslt function for removing white space in an element other
than strip-space.  I have an element which contains urls, some of which have
white space in the middle of the url.  Strip-space won't help with this.

Thanks,

Mark Williams

Current Thread