Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: The "other" Ascii codes???

From: carl::cybercraft::co::nz at: 9-Mar-2002 11:58

On 09-Mar-02, Terry Brownell wrote:
> How does one create/access/manipulate the other ascii codes such as > =BF and =D8 in a rebol string?
Hi Terry, Quite easy - just treat them as standard characters. ie...
>> to-decimal #"=BF"
== 191
>> southern-questionmark: to-char 191
== #"=BF"
>> append "What's it mean anyway" southern-questionmark
== "What's it mean anyway=BF" And so on. -- Carl Read