Does someone have an idea on where I could find some javascript code to parse CSV data ?

link|improve this question

50% accept rate
What is your CSV data source? – rahul Aug 18 '09 at 10:56
My CSV is in a textarea so the solution of using CSVToArray() is working fine. – Pilooz Aug 18 '09 at 13:14
1  
Take a look at this answer here, it has good answers: stackoverflow.com/questions/8493195/… – Dobes Vandermeer Feb 8 at 8:17
@Pilooz - seems you have enough points to accept answers? – mplungjan May 16 at 11:40
feedback

4 Answers

You can use the CSVToArray() function mentioned in this blog entry.

<script type="text/javascript">

    // This will parse a delimited string into an array of
    // arrays. The default delimiter is the comma, but this
    // can be overriden in the second argument.
    function CSVToArray( strData, strDelimiter ){
    	// Check to see if the delimiter is defined. If not,
    	// then default to comma.
    	strDelimiter = (strDelimiter || ",");

    	// Create a regular expression to parse the CSV values.
    	var objPattern = new RegExp(
    		(
    			// Delimiters.
    			"(\\" + strDelimiter + "|\\r?\\n|\\r|^)" +

    			// Quoted fields.
    			"(?:\"([^\"]*(?:\"\"[^\"]*)*)\"|" +

    			// Standard fields.
    			"([^\"\\" + strDelimiter + "\\r\\n]*))"
    		),
    		"gi"
    		);


    	// Create an array to hold our data. Give the array
    	// a default empty first row.
    	var arrData = [[]];

    	// Create an array to hold our individual pattern
    	// matching groups.
    	var arrMatches = null;


    	// Keep looping over the regular expression matches
    	// until we can no longer find a match.
    	while (arrMatches = objPattern.exec( strData )){

    		// Get the delimiter that was found.
    		var strMatchedDelimiter = arrMatches[ 1 ];

    		// Check to see if the given delimiter has a length
    		// (is not the start of string) and if it matches
    		// field delimiter. If id does not, then we know
    		// that this delimiter is a row delimiter.
    		if (
    			strMatchedDelimiter.length &&
    			(strMatchedDelimiter != strDelimiter)
    			){

    			// Since we have reached a new row of data,
    			// add an empty row to our data array.
    			arrData.push( [] );

    		}


    		// Now that we have our delimiter out of the way,
    		// let's check to see which kind of value we
    		// captured (quoted or unquoted).
    		if (arrMatches[ 2 ]){

    			// We found a quoted value. When we capture
    			// this value, unescape any double quotes.
    			var strMatchedValue = arrMatches[ 2 ].replace(
    				new RegExp( "\"\"", "g" ),
    				"\""
    				);

    		} else {

    			// We found a non-quoted value.
    			var strMatchedValue = arrMatches[ 3 ];

    		}


    		// Now that we have our value string, let's add
    		// it to the data array.
    		arrData[ arrData.length - 1 ].push( strMatchedValue );
    	}

    	// Return the parsed data.
    	return( arrData );
    }

</script>
link|improve this answer
Sure ! It's cool. Thanks for this. – Pilooz Aug 18 '09 at 11:05
feedback

Im not sure why I couldn't kirtans ex. to work for me. It seemed to be failing on empty fields or maybe fields with trailing commas...

This one seems to handle both.

I did not write the parser code, just a wrapper around the parser function to make this work for a file. see Attribution

    var Strings = {
        /**
         * Wrapped csv line parser
         * @param s string delimited csv string
         * @param sep separator override
         * @attribution : http://www.greywyvern.com/?post=258 (comments closed on blog :( )
         */
        parseCSV : function(s,sep) {
            // http://stackoverflow.com/questions/1155678/javascript-string-newline-character
            var universalNewline = /\r\n|\r|\n/g;
            var a = s.split(universalNewline);
            for(var i in a){
                for (var f = a[i].split(sep = sep || ","), x = f.length - 1, tl; x >= 0; x--) {
                    if (f[x].replace(/"\s+$/, '"').charAt(f[x].length - 1) == '"') {
                        if ((tl = f[x].replace(/^\s+"/, '"')).length > 1 && tl.charAt(0) == '"') {
                            f[x] = f[x].replace(/^\s*"|"\s*$/g, '').replace(/""/g, '"');
                          } else if (x) {
                        f.splice(x - 1, 2, [f[x - 1], f[x]].join(sep));
                      } else f = f.shift().split(sep).concat(f);
                    } else f[x].replace(/""/g, '"');
                  } a[i] = f;
        }
        return a;
        }
    }
link|improve this answer
feedback

I can beat Kirtan's answer

I just put the finishing touches on a jQuery plugin library that specializes in CSV parsing, including support for custom delimiters, separators, line endings, etc..

Enter jQuery-CSV

Example:

track,artist,album,year

dangerous,'Busta Rhymes','When Disaster Strikes',1997

// calling this
music = $.CSV2Array(csv)

// outputs...
[
  ['track','artist','album','year'],
  ['dangerous','Busta Rhymes','When Disaster Strikes','1997']
]

// to grab the 'artist' using the index number
console.log(music[1][1])
link|improve this answer
Why is it jQuery csv? Why does it depend on jQuery? I've had a quick scan through the source... it doesn't look like you're using jQuery – paulslater19 May 10 at 8:20
@paulslater19 It doesn't have to depend on jquery to be a jquery plugin. It's jquery-csv because it's attached to the '$' namespace and the project follows the common jQuery style guidelines. – Evan Plaice May 10 at 20:35
feedback

use the split method in JS:

var arrayTemp = new Array();
arrayTemp = stringCSV.split(",");
// iterate thru array
for(var counter in arrayTemp) {
    // YOUR CODE
    var tempWhatever = arrayTemp[counter];
}
link|improve this answer
PS: if you are going to downvote an answer, please have the courtesy to inform why you did so: 1. IF answer is incorrect, author can edit or remove it. 2. author may dispute your evaluation. 3. others, when reading the post, may understand what is wrong or why you disagree with proposed solution. 4. if you know enough to downvote a solution, then you should be obliged to share said knowledge, not just leech off of everybody else. PPS: this WORKS, boys and girls, go ahead and try it. – tony gil Feb 26 at 18:06
5  
Tony, this couldnot work. This code just splits string using comma as separator. To parse csv you should add to your code handling of line breaks and double quotes. Look at ietf.org/rfc/rfc4180.txt. Note that commas can be inside quotes, so you cant just split string. – Astronavigator Feb 28 at 13:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.