CSVParser is a class to parse and generate CSV format. Instance methods of Array delegates to lines attribute.
==
each_field
new
new_with_file
parse
parse_with_file
to_s
write_to_file
Array of CSV lines(CSVLine objects).
String to parse.
Generates an instance parsed contents of the file.
Returns an array parsed the string.
Returns an array parsed contents of the file.
Generates an instance parsed the string sepalated by the sepalator. If the space is true, deletes spaces of fields at start and end.
Executes the block for every field.
Writes saving data to the specified file.
Returns true if self is equal to the CSVParser object.
Returns a string converted to CSV format with the sepalator and eol(end of line) character. If enquote is true, each fields are enclosed with double quotes.