TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: alanjt on March 11, 2008, 11:32:18 AM

Title: chr ascii question
Post by: alanjt on March 11, 2008, 11:32:18 AM
is it possible to get an ascii for a tab
or just a way to, when writing a file from a lisp, to place a tab?
Title: Re: chr ascii question
Post by: Keith™ on March 11, 2008, 11:38:09 AM
"\t" in a string is translated to a tab in lisp, however you can use the ascii code for a tab (chr 9)
Title: Re: chr ascii question
Post by: alanjt on March 11, 2008, 12:20:19 PM
awesome, thanks so much.