SEPARATOR
Also known as
raw_separator (with or without @ prefix)
Set the column separator for raw output mode.
Syntax
@separator <string>Supports escape sequences: \t (tab), \n (newline), \\ (backslash)
Examples
Comma Separator (CSV)
comment on function export_csv() is
'HTTP GET
@raw
@separator ,';Tab Separator (TSV)
comment on function export_tsv() is
'HTTP GET
@raw
@separator \t';Pipe Separator
comment on function export_pipe() is
'HTTP GET
@raw
@separator |';Custom Separator
comment on function export_custom() is
'HTTP GET
@raw
@separator ::';Related
- Comment Annotations Guide - How annotations work
- Configuration Guide - How configuration works
Related Annotations
- RAW - Enable raw output mode
- NEW_LINE - Set row delimiter
- COLUMN_NAMES - Include header row