DSVExporter๏
Inherits: RefCounted < Object
Low-level delimiter-separated value exporter.
Description๏
DSVExporter writes string rows as delimiter-separated text. Fields containing delimiters, quotes, or line breaks are quoted and quotes are escaped by doubling them.
Methods๏
export(data: Array, file_path: String, delimiter: String = ",") static |
|
export_string(data: Array, delimiter: String = ",") static |
Method Descriptions๏
bool export(data: Array, file_path: String, delimiter: String = ",") static ๐
Writes string rows from data to file_path.
String export_string(data: Array, delimiter: String = ",") static ๐
Converts string rows from data into delimiter-separated text.