Alright, how about some regex help?

(\d{1,2}),([^,]+),([^,]+),([^,]+),([^\n\r,]+)

var col[$1]="$2","$3","$4"

I just want to know if there is a way to do this without specifying the individual matches. Its not that big of a deal just kind of annoying. FYI this takes a csv with header column (not row) and turns it into an array. Using it for the javascript piece I posted earlier. Just trying to simplify the format of the array so that maybe I can ditch the "eval".