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

[REBOL] Re: questions about VID and parse.

From: christophe:coussement:mil:be at: 11-Mar-2002 9:51

> Beginner questions...
[Coussement Christophe] welcome ;-))
> Also another question about parse. How to use a string as a pattern? > parse "hello world" ?? > I want ["hello" "rld"] > By what should I replace ?? to make this sequence ("wo" in this example) > considered as a whole.
[Coussement Christophe] try:
>> parse "hello world" none
== ["hello" "world"]
>>
hope it helps ! ==christophe