Hello.
My issue:
I'm parsing string using Do /L with delimiter /T
Works, as expected.
Now I want to add at the first position an empty item:
Works as previous code, unexpected
But it is possible to add an empty item at the end. This example works as expected:
Any suggestions?
My issue:
I'm parsing string using Do /L with delimiter /T
Code:
*Do item in /T";" /L .COM;.EXE;.BAT;.CMD
*Echo ^>%[item]^<
*EndDo
Now I want to add at the first position an empty item:
Code:
*Do item in /T";" /L ;.COM;.EXE;.BAT;.CMD
*Echo ^>%[item]^<
*EndDo
But it is possible to add an empty item at the end. This example works as expected:
Code:
*Do item in /T";" /L .COM;.EXE;.BAT;.CMD;
*Echo ^>%[item]^<
*EndDo
Any suggestions?