Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

libcsv

A CSV parser

Available for downloading on the Hel Repository.

Description

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.