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

[REBOL] Is this bug in parse funtion?

From: rebol-list2:seznam:cz at: 27-May-2003 14:16

Hello rebol-list, just wondering if this is how SKIP should work in the parse function: digits: charset "0123456789" parse "12 34" [2 digits copy x to end] probe x ;== " 34" parse "12 34" [2 digits skip copy x to end] probe x ;== "4" but I would suppose "34" -- Best regards, rebOldes