csv_decode (string data[, function f]) ⇒ list
Reads a string which consists of comma separated values and splits them on new lines and commas into a list of lists of values. The optional f parameter specifies some function that receives the value of each column to the function and obtains it's return value. This makes it easy to work on CSV files. The function must have at least one parameter.
Prior to version 1.7.3 this function was named parse_csv.
First available: Version 1.3.5.80
Comments