I try to write a script in VBS which opens CSV file do some changes in data and save it. The problem which I have is that I have data in following format:
data1,data2, data3,data4,data5,data6,
After save operation (even that I'm not changhing file content) VBS adds additional comma characters to ends onf lines and file looks as follow:
data1,data2,,, data3,data4,data5,data6,
It completes the missing (for him) comma. Unfortunatelly I have a program which doesn't read correctly such CSV.
Is it any way to prevent VBS from adding these additional commas? If no do you know how to remove additional commas from the end of line?