[REBOL] Re: About Parsing
From: brett:codeconscious at: 16-Jul-2001 20:34
Hi Rondon,
I've seen Andrew answer your question. I just want to show another way of
looking at the problem (based on your example).
file: {Id: 27698
Author: Kann, James
Title: Crossroads of Life
Abstract: This book talks about the hard ways of life.
Source: State Public Library
Holdings: AGE 12308082
}
parse/all file [
any [
copy label to ":" skip any " " copy data to "^/" skip
(print mold reduce [label data])
]
end
]
HTH
Brett.