Skip to main content
Version: Next

print_tsv

Prints a record has a tab separated string of values.

print_tsv(input:record, [list_separator=str, null_value=str]) -> string

Description

The print_tsv function prints a record's values as a tab separated string.

input: record

The record you want to print.

list_separator = str (optional)

The string separating different elements in a list within a single field.

Defaults to ",".

null_value = str (optional)

The string denoting an absent value.

Defaults to "-".

Examples

from {x:1, y:true, z: "String"}
output = this.print_tsv()
{
  x: 1,
  y: true,
  z: "String",
  output: "1\ttrue\tString",
}

See Also

parse_tsv, write_tsv