On 09-Mar-02, Terry Brownell wrote: > How does one create/access/manipulate the other ascii codes such as > � and � in a rebol string?
Hi Terry, Quite easy - just treat them as standard characters. ie... >> to-decimal #"�" == 191 >> southern-questionmark: to-char 191 == #"�" >> append "What's it mean anyway" southern-questionmark == "What's it mean anyway�" And so on. -- Carl Read -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
