is it possible to increase the letter that a variable holds?
e.g.
letter = 'a'
-some code-
letter value = b
i want to repeat that process for an non-predetermined amount
i.e.
some times it will stop at b, other it will stop at q depending on the number of values being processed
i know i can do it with numbers by using ++ but i also need to use letters in conjunction with numbers
the final output from the script would be something like
1a
1b
1c
1d
2a
3a
3b
etc.
however i cant hard code this because other times it may be
1a
1b
2a
2b
2c
3a
4a
etc.
it all depends on the number of values in the array being processed
if you understand what i mean
anyway thats what i want to do if it is possible
thanks in advance for any help
it is much appreciated
I can't be bothered to have a sig!
e.g.
letter = 'a'
-some code-
letter value = b
i want to repeat that process for an non-predetermined amount
i.e.
some times it will stop at b, other it will stop at q depending on the number of values being processed
i know i can do it with numbers by using ++ but i also need to use letters in conjunction with numbers
the final output from the script would be something like
1a
1b
1c
1d
2a
3a
3b
etc.
however i cant hard code this because other times it may be
1a
1b
2a
2b
2c
3a
4a
etc.
it all depends on the number of values in the array being processed
if you understand what i mean
anyway thats what i want to do if it is possible
thanks in advance for any help
it is much appreciated
I can't be bothered to have a sig!