CSV
Method Signature
CSV( [path], [delimiter], [hasHeaders], [trim], [ignoreEmptyLines], [skipHeaderRecord] )Arguments
Argument
Type
Required
Description
Default
Examples
// Create new
csv = CSV();
// Load existing
csv = CSV( "data.csv" );
// Load with custom delimiter
csv = CSV( path="data.txt", delimiter="|" );
// Load with full configuration
csv = CSV(
path="data.csv",
delimiter=",",
hasHeaders=true,
trim=true,
ignoreEmptyLines=true,
skipHeaderRecord=true
);Related
Last updated
Was this helpful?
