Prints a record as a comma-separated string of values.
print_csv(input:record, [list_separator=str, null_value=str]) -> stringDescription
Section titled “Description”The print_csv function prints a record's values as a
comma separated string.
input: record
Section titled “input: record”The record you want to print.
list_separator = str (optional)
Section titled “list_separator = str (optional)”The string separating the elements in list fields.
Defaults to ";".
null_value = str (optional)
Section titled “null_value = str (optional)”The string denoting an absent value.
Defaults to "".
Examples
Section titled “Examples”from { x:1, y:true, z: "String"}output = this.print_csv(){ x: 1, y: true, z: "String", output: "1,true,String",}