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

[REBOL] Re: Parsing

From: anton:lexicon at: 1-Nov-2002 1:27

parse by default ignores the whitespace. Use parse/all if you need to consider whitespace. You can just do this: parse/all text note-rules But it won't succeed all the way because your rule does not handle the second space. You can try this parse rule construction: some [a-rule | b-rule | " "] to handle spaces that are not already handled by a-rule or b-rule. Anton.