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

[REBOL] Re: Remove quote marks & LEFT(), RIGHT() ?

From: gchiu:compkarori at: 16-Dec-2000 8:42

On Fri, 15 Dec 2000 13:07:31 REBOL Time Zone Donald Dalley <[ddalley--idirect--com]> wrote:
> What is the REBOL way of removing quotes (") from > strings?
this is another way:
>> test: {This is a "test}
== {This is a "test}
>> replace/all test {"} ""
== "This is a test" -- Graham Chiu