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

[REBOL] Re: More Parsing questions

From: pablohar:ho:tmail at: 6-Sep-2001 11:06

Hi Stefan.. I'm not a parse guru but try this... digit: charset [#"0" - #"9"] alpha: charset [#"A" - #"Z" #"a" - #"z"] alphanum: union alpha digit Rule: [any alpha 4 digit any alpha] It's parsing my examples only for 4 digits (not more not less) and works