A CSV parser
Available for downloading on the Hel Repository.
Returns a function that accepts the string to decode as the first argument and returns the decoded value.
local parse = require("csv")
print(require("serialization").serialize(parse("aaa,bbb,ccc,ddd\neee,fff,ggg,hhh")))Fully implements the RFC 4180.