Oxygen Basic

Programming => Example Code => Data Processing => Topic started by: Charles Pegge on March 28, 2013, 04:19:44 PM

Title: Ascii List
Post by: Charles Pegge on March 28, 2013, 04:19:44 PM
'Create Ascii List
pr="ASCII:" chr(13,10)
for i=1  to 255
pr+=hex(i,2) chr(9) i chr(9) chr(i) chr(13,10)
next
putfile "ascii.txt", pr
Title: Re: Ascii List
Post by: JRS on March 28, 2013, 04:33:54 PM
FYI - If you ever need a quick ASCII chart reference, I have a sticky post version HERE (http://www.allbasic.info/forum/index.php?topic=49.0).
Title: Re: Ascii List
Post by: kryton9 on June 26, 2013, 01:25:35 PM
Nice and handy guys, thanks for the code and the link.