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

[REBOL] removing a character with replace - was: RE: [REBOL]

From: anton:lexicon at: 5-Nov-2002 12:24

Actually, Louis probably wants this: replace/all first x #"ÿ" "" replacing with an empty string, not an empty character. An empty character is ascii 0:
>> to-integer #""
== 0 which you can see escape-coded in the string below: "^@" Anton.