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๏ƒ

bool

export(data: Array, file_path: String, delimiter: String = ",") static

String

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.