JavaScript jQuery-csv. How to trim() headers?

810 Views Asked by At

I have implemented jQuery-csv library to parse data from CSV file. My CSV file looks like this:

name, description, client name, client address, client desc
Name 123, Descript 123, client name 123, client address 55, client desc 66
Name 456, Descript 456, client name 55, client address 55, client desc 66

I am using $.csv.toObjects(csv);

var data = $.csv.toArrays(csv); 

Is it possible to trim() whitespace for headers?

1

There are 1 best solutions below

0
On

Based on $.csv.toObjects(csv, options, callback) in doc

Below is my solution for removing the whitespaces (using callback)

$.csv.toObjects(csvd, {}, function(err, data){
    $.each(data, function(index, row){
        $.each(row, function(key, value){
            var newKey = $.trim(key);
            if (typeof value === 'string'){
                data[index][newKey] = $.trim(value);
            }
            if (newKey !== key) {
                delete data[index][key];
            }
        });

    });
    processedData = data;
});