xsl-list
[Top] [All Lists]

RE: return something x number of times

2005-09-15 23:22:13

If you want the characters concatenated without spaces, use
<xsl:value-of select="$indent_4" separator=""/>, or use
string-join($indent_4, "").


The string-join() solution works well in XMLSpy and solves my problem.
The "separator" solution does not work in XMLSpy.

Best regards,
Jesper Tverskov


-----Original Message-----
From: Michael Kay [mailto:mike(_at_)saxonica(_dot_)com] 
Sent: Friday, September 16, 2005 12:06 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] return something x number of times


In XSLT 2.0 (in XMLSpy) this markup:
<xsl:variable name="indent_4" select="for $a in 1 to 4 return 'x'"/>

Returns 'x x x x'.

Why the whitespace?


Assuming XMLSpy is implementing the spec correctly, $indent_4 is a sequence
of 4 strings, not a string of 7 characters as you suggest. It comes out as a
string of 7 characters when you output it using xsl:value-of, because
xsl:value-of by default inserts spaces as separators between the strings in
a sequence. 

Michael Kay
http://www.saxonica.com/



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>