I have a file (file.txt) containing just one line (I have concatenated all the lines in one). So I have the following line:
85;048;048;057;048;055; 045 ;84;048;048;057;055;055
And I would like that file.txt containing the ASCII conversion of each number delimited by
;
So the file.txt should then contains:
U00907 - T00977
I have tried with a loop but it really does not work:
set content=
for /f "delims=;" %%i in (file.txt) do (
cmd /c exit %%i
Set "char=!=ExitCodeAscii!"
set content=%content% %char%
)
Any ideas?