Hi Terry,
<< When parsing a string such as {Hello world, "this to" is an example;}
parse will remove the comma, and the semi... and takes anything within
quotes as a single value.
Sometimes I just want to parse spaces so we get...
["Hello" "world," "this" "to" "is" "an" "example;"] >>
This gets you close:
>> parse/all {Hello world, "this to" is an example;} " "
== ["Hello" "world," "this to" "is" "an" "example;"]
To ignore the quotes, I think you'll need a real rule-set.
--Gregg
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.