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

[REBOL] Re: newlines

From: brett:codeconscious at: 8-Nov-2001 20:00

Hi Joel, Thanks for another interesting benchmarking post. For curiosity, could you add these late candidates to your benchmark tests? method1: [any [".." mark1: any #"." mark2: (remove/part mark1 mark2) | skip ]] parse/all input method1 other-char: complement charset {.} method2: [any [some other-char | ".." mark1: any #"." mark2: (remove/part mark1 mark2) | skip ] ] parse/all input method2 Brett.