@echo off
:TEST
set /p TEST=TEST:
echo %TEST%
pause
If I take the above code and input something, for example "This Is A Test", how would I replace all of the spaces with another character, for example a plus sign or a dash?
@echo off
:TEST
set /p TEST=TEST:
echo %TEST%
pause
If I take the above code and input something, for example "This Is A Test", how would I replace all of the spaces with another character, for example a plus sign or a dash?