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

[REBOL] Re: Parsing with 2 conditions

From: anton:lexicon at: 10-Apr-2002 21:20

1) What's in your ligne? 'parse must get to the end of your string to return true.
>> ligne: "Symbol"
== "Symbol"
>> parse ligne ["Symbol"]
== true It works for me... but maybe you have something like:
>> parse "Symbol " ["Symbol"]
== false 2) Does this help?
>> parse "----Symbol---FraSymFrameSymbol---Frame" [some ["Symbol" | "Frame"
| skip]] == true Anton.