Created
August 12, 2014 10:05
-
-
Save e7d/43ccb811d0b114bb9381 to your computer and use it in GitHub Desktop.
[JavaScript] Parse delimiter-separated values (CSV, TSV...)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Comma-separated values to JSON | |
function parseCSV(data) { | |
return parseDSV(data, ","); | |
} | |
// Tabulation-separated values to JSON | |
function parseTSV(data) { | |
return parseDSV(data, "\t"); | |
} | |
// Delimiter-separated values to JSON | |
function parseDSV(data, separator) { | |
var lines = data.split("\n"); | |
var headers = lines[0].split(separator); | |
var result = []; | |
for (var i = 1, len = lines.length; i < lines.length; i++) { | |
var obj = {}; | |
var line = lines[i].split(separator); | |
for (var j = 0, len = headers.length; j < headers.length; j++) { | |
obj[headers[j]] = line[j]; | |
} | |
result.push(obj); | |
} | |
return result; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Using the file above, parse a CSV to JSON | |
// Our CSV input | |
var csv = [ | |
"firstname,name,age", | |
"John,Doe,56", | |
"Pierre-Paul,Jacques,42", | |
"Max,Mustermann,37", | |
"João,das Couves,59" | |
].join("\n"); | |
// Parse it to a JavaScript Object | |
var obj = parseDSV(csv); | |
// Print a pretty JSON representation in console | |
console.log(JSON.stringify(obj, null, "\t")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment