So I'm trying to print out the value of a variable in the form of (variable.variable). I can't figure out how to do it. The closest thing I got was:
echo %"%Dog.Index%"%
Which just printed out:
Dog.Index
And then I tried to add another set of % tags and that printed out:
%""%
Any help would be great! Thanks.
(EDITED)
I'm trying to basically make an array-like variable. So I want the value of Dog.1, Dog.2, Dog.3 printed out and assign them as such:
set Dog.%index%=(Value)
And %index% is just a counter that I increment. Trying "%Dog.index%" does not work, neither does %Dog%.%index% Thanks again.