Re: How does one translate hexadecimal ascii strings to a value ?
- Posted by Lee woo seob <wslee at HHI.CO.KR> Jun 27, 1997
- 881 views
>
>How does one translate hexadecimal ascii strings to a value in Euphoria ?
>
Why don't you use value() routine as:
sequence s
s = value("#5D")
-- s[2] will have the value translated.
hope it helps.
from Lee woo seob

