Tab Delimited

Kenneth Brody kenbrody at spamcop.net
Mon Oct 3 07:19:19 PDT 2011


On 10/1/2011 5:48 AM, Ed Hilovsky wrote:
> What would the Field separator be for a Tab Delimited Text file ?
>
> import ascii dat=xxx R=\n F=, ß for csv file, what is TAB
[...]

There are several ways to specify these values:

You have the following backslash-codes, which are probably what you see 
almost all the time:

     \n = newline
     \r = carriage return
     \f = form-feed
     \t = tab

There is also "^x" syntax to specify control characters, so "f=^I" would 
specify the TAB character.

And, if you forget, you can always specify the decimal value of the ASCII 
character, so "f=9" would work, too.

-- 
Kenneth Brody


More information about the Filepro-list mailing list