Actually i am very poor at batch programming...
I have a csv file in which data is like this
"column1","column2","column2"
"value1","value2","value3"
I have to replace comma with semicolon and remove double quotes.
MY output should be like this..
column1;column2;column2
value1;value2;value3
I have tried like this..
@echo off
setlocal enabledelayedexpansion
for /f "delims==" %%A in (input.csv) do (
set string=%%A & echo !string:,=;! >> output.csv
)
it is replacing comma with semicolon (i dont know how it is) but how to remove double quotes....