CSV, RegExp, VBScript

Removing commas between double quotes in a CSV file

CSV (Comma Separated Values) data files, as the term implies, contains plain text records with column (field) values separated or delimited by commas.  One example of using CSV files includes data exchange between applications and/or computing platforms.  Writing a script to extract CSV data appears to be a straight forward process – simply loading an array with data from each…

Continue Reading