So i was making a batch file recently, and i made a string. Later i needed to set each number as its own string (its hard to describe).
For example:
the input is:
set str=2043
so, i want to set 2, 0, 4 and 3 as their own string like this:
set str1=2
set str2=0
set str3=4
set str4=3
but lets say i dont know what str
is. i just know that its 4 numbers.
I tried to browse the web but the i didnt find anything :P
Thanks for the help :D