我阅读了第 15 章: http ://www.rebol.com/docs/core23/rebolcore-15.html#section-8 “
spacer: charset reduce [tab newline #" "]
spaces: [some spacer]
rule: ["a" spaces "b" spaces "c"]
parse/all "a b c" rule
可以,但是如果我将规则更改为
rule: ["a" spaces copy varb to spaces "c"]
parse/all "a b c" rule
Rebol 控制台输出错误:
** Script Error: Invalid argument: some spacer
** Where: halt-view
** Near: parse/all "a b c" rule
>>
为什么 ?
谢谢。