↧
Answer by Hackoo for Batch file to remove double quotes from csv
You can give a try with this code for testing : @echo off Title Replace Double Quotes into a Variable Setlocal EnableDelayedExpansion set Var1=C:\Users\magoo\"flower.jpg" echo Variable Var1 with quotes...
View ArticleAnswer by Dexirian for Batch file to remove double quotes from csv
If you have access to a linux based system, i would recommend using sed : sed -i 's/"//g' filename If not, this article here seems to be pointing in the right direction, but am no batch expert myself :...
View ArticleBatch file to remove double quotes from csv
My file is tab separated file(TSV) with 5 columns I have local drive path on my first column but each image name from path contains double quotes. Path C:\Users\magoo\"flower.jpg"...
View Article