Export Delimiter
Syntax
Export Delimiter character | tab
Parameters
- character: The single character to use as the delimiter (e.g.,
*,|). - tab: The literal keyword
tabto specify the tab character as the delimiter.
Description
Specifies a custom delimiter character to separate fields in the output generated by the Export command, instead of the default comma.
Remarks
This command must appear before any Field or Event commands within an Export block.
Examples
To use an asterisk (*) as the delimiter:
Export
Destination output.txt
Export Delimiter *
Field FIRST NAME
Field LAST NAME
To use the tab character as the delimiter:
Export
Destination output.tsv
Export Delimiter tab
Field FIRST NAME
Field LAST NAME