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

[REBOL] RE : Re: Parsing bug?

From: fmarcia::marcopoly::com at: 7-Oct-2002 15:04

Thanks Andrew. Franck. -----Message d'origine----- De=A0: Andrew Martin [mailto:[Al--Bri--xtra--co--nz]] Envoy=E9=A0: lundi 7 octobre 2002 10:47 =C0=A0: [rebol-list--rebol--com] Objet=A0: [REBOL] Re: Parsing bug? It looks like you've discovered a 'parse bug. I've forwarded this to feedback. Andrew Martin ICQ: 26227169 http://valley.150m.com/ -><- ----- Original Message ----- From: "Franck MARCIA" <[fmarcia--marcopoly--com]> To: <[rebol-list--rebol--com]> Sent: Monday, October 07, 2002 8:48 PM Subject: [REBOL] Parsing bug? Hi all, Is that a bug or is there something I don't understand?
>> text: {The|quick "brown"|"fox" jumps|over "the" lazy|dog}
== {The|quick "brown"|"fox" jumps|over "the" lazy|dog}
>> parse/all text "|"
== ["The" {quick "brown"} "fox" " jumps" {over "the" lazy} "dog"] Look at the field which contains {"fox" jumps}! How can I get ["The" {quick "brown"} {"fox" jumps} {over "the" lazy} dog ]? Franck.