[REBOL] Parsing bug?
From: fmarcia:marcopoly at: 7-Oct-2002 9:48
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.