This is the input file:-
Hello,1-23456 How are you,2-34567 . . .
I want output:-
1-23456,Hello 2-34567,How are you . . .
Please help me to create a batch file for this.
I have tried this
@echo off &setlocal set "textfile=inputchq.csv" set "newfile=output.txt" (for /f "tokens=1,2 delims=," %%i in (%textfile%) do set srno=%%a&set comments=%%b ( set "line=%%i" setlocal enabledelayedexpansion set "line=%comments%,%srno%" echo(!line! endlocal ))>>"%newfile%"
But i am not getting the desired output