xsl-list
[Top] [All Lists]

Re: [xsl] things about grouping

2012-11-29 02:37:38
On Thu, Nov 29, 2012 at 8:08 AM, Andrew Welch 
<andrew(_dot_)j(_dot_)welch(_at_)gmail(_dot_)com> wrote:
Oh goodie - I can slip this in without having to start a new thread.

Why do I have to write

for $i in (1 to n)  return "$1"

You probably meant return

for $i in (1 to n)  return $i

(unless you really wanted to return the string "$1" n times)


yes I do want to return the string "$1" n times.


instead of

(1 to n)/"$1!

You can now in 3.0 using the ! operator:

(1 to 5) ! concat('A', .)

returns A1 A2 A3 etc


Mea culpa for the typo (I use Dvorak and " and ! are proximately
colocated). I want to know why I cannot write  (1 to n)/"$1" to give
me the string "$1" n times in XSLT 2.0.

 I actually used this  (or rather the version of it that I was forced
to write) in some code I've just written.

--~------------------------------------------------------------------
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>