This may be an elementary question, but, if anyone can help, thanks.
Is there an easy way to delimit an export file with a TAB character?
Kevin,
Simply output either chr(9) or "~t".
Example;
put "Sometext" + chr(9) + "Some more text".
or
put "Sometext~tSome more text".
Dave
"Kevin Krueger" wrote:
>
>This may be an elementary question, but, if anyone can
>help, thanks.
>
>Is there an easy way to delimit an export file with a
>TAB character?
"Dave Clark" wrote:
>
>Kevin,
>
>Simply output either chr(9) or "~t".
>
>Example;
>
>put "Sometext" + chr(9) + "Some more text".
>
>or
>
>put "Sometext~tSome more text".
>
>Dave
>
>
>"Kevin Krueger" wrote:
>>
>>This may be an elementary question, but, if anyone can
>>help, thanks.
>>
>>Is there an easy way to delimit an export file with a
>>TAB character?
>
It does appear that the following works:
EXPORT STREAM expout DELIMITER "~t"
customer.number
customer.name
etc...
works for exporting a TAB delimited export file.
Thanks