Hi there,
We often use a numeric 'counter' in loops. Example code:
local i = 1
foreach .....{
....`i'...
local i = `i' + 1
}
How could I do it using alphabets? That is, I want to go along the sequence 'a b c ....'.
Thanks in advance for your kind response.
We often use a numeric 'counter' in loops. Example code:
local i = 1
foreach .....{
....`i'...
local i = `i' + 1
}
How could I do it using alphabets? That is, I want to go along the sequence 'a b c ....'.
Thanks in advance for your kind response.
Comment