12-06-2013, 06:04 AM
Hi, is there a function that returns the characters 0 through 255,
something like:
str s
s = chr(34) ;; s should be a quote now
s = chr(9) ;; s should be a tab now
without resorting to:
s = " "
s[0] = 34
Thank you
something like:
str s
s = chr(34) ;; s should be a quote now
s = chr(9) ;; s should be a tab now
without resorting to:
s = " "
s[0] = 34
Thank you
