Library for reading/writing files in CSV format. Files in CSV (comma separated values) format can be imported and exported by most spreadsheed and database applications.
Author: Michael Hanus
Version: September 2004
writeCSVFile
:: String -> [[String]] -> IO ()
Writes a list of records (where each record is a list of strings) into a file in CSV format. |
showCSV
:: [[String]] -> String
Shows a list of records (where each record is a list of strings) as a string in CSV format. |
readCSVFile
:: String -> IO [[String]]
Reads a file in CSV format and returns the list of records (where each record is a list of strings). |
readCSVFileWithDelims
:: String -> String -> IO [[String]]
Reads a file in CSV format and returns the list of records (where each record is a list of strings). |
readCSV
:: String -> [[String]]
Reads a string in CSV format and returns the list of records (where each record is a list of strings). |
readCSVWithDelims
:: String -> String -> [[String]]
Reads a string in CSV format and returns the list of records (where each record is a list of strings). |
Writes a list of records (where each record is a list of strings) into a file in CSV format.
|
Shows a list of records (where each record is a list of strings) as a string in CSV format. |
Reads a file in CSV format and returns the list of records (where each record is a list of strings).
|
Reads a file in CSV format and returns the list of records (where each record is a list of strings).
|
Reads a string in CSV format and returns the list of records (where each record is a list of strings).
|
Reads a string in CSV format and returns the list of records (where each record is a list of strings).
|