while loop to create list using xpress
I have a string 'myname' and i want to create a loop that increments 1 to 3 and appends the count to the string. In this case, the result desired result is:
<List>
<s>myname1</s>
<s>myname2</s>
<s>myname3</s>
</List>
How can this be done? I believe a <while> is needed>

