Re: [xsl] Invalid characters in xsl:element

Subject: Re: [xsl] Invalid characters in xsl:element
From: Tony Graham <Tony.Graham@xxxxxxxxxxxxxxx>
Date: Tue, 22 May 2001 18:24:34 +0100 (BST)
Jason Macki wrote at 22 May 2001 11:56:43 -0500:
 > When I use the following to get the tag name:
 > 	 <xsl:element name="substring-after(substring-after(.
 > ,'!'),'!')">
 > 	</xsl:element>
 > 
 > I get the error "A name contained an invalid character".  Now, I've
 > tested this function using the xsl:value-of element, and there were no
 > invalid characters in the result.  

Add the {} for an attribute value template:

	 <xsl:element name="{substring-after(substring-after(.
,'!'),'!')}">
	</xsl:element>

since without that, you were specifying an element named
"substring-after(...".

Also, shouldn't your outer substring-after() be a substring-before()?

Regards,


Tony Graham
------------------------------------------------------------------------
Tony Graham                           mailto:tony.graham@xxxxxxxxxxxxxxx
Sun Microsystems Ireland Ltd                       Phone: +353 1 8199708
Hamilton House, East Point Business Park, Dublin 3            x(70)19708

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread