string LIST looping?
Posted: Thu Jun 30, 2011 12:34 am
Hi,
looping over sets of strings is very convenient, like the pairs in
Looping through string LISTs is also very convenient, like in
which is equivalent to
However. What I can't do (to the best of my knowledge), which would be very useful, is to loop over sets of string LISTs. Effectively merging the lists.
To be more precise, I would like to see a way to make
equivalent to the code-example at top.
Is this doable?
Thanks in advance,
Dagfinn
looping over sets of strings is very convenient, like the pairs in
Code: Select all
for %c %n US USA No Norway SE Sweden
....
next
Code: Select all
%cL = "US No Se"
for %c {{%cL}}
...
next
Code: Select all
for %c US No Se
...
next
To be more precise, I would like to see a way to make
Code: Select all
%cL = "US No Se"
%nL = "USA Norway Sweden"
for %c {{%cL}} {{%nL}}
...
next
Is this doable?
Thanks in advance,
Dagfinn