[REBOL] Yet another parse problem or bug?
From: cyphre::seznam::cz at: 31-Oct-2001 10:59
Hello all, try this: --------snip---------- test: {line 1 line 2 "line 3" line 4} parse/all test "^/" ----------snip--------- the result is: ["line 1" "line 2" { "line 3"} "line 4"] why the result doesnot looks like this: ["line 1" {"line 2"} { "line 3"} "line 4"] I don't want to use: parse/all test [some [copy t to "^/" (probe t) skip]] Maybe bug in parse? Anyone? regards, Cyphre