Create a list from a word
parse expression
(parse expression delimiters)
Splits an input word (result of the expression) into the sub-words using white spaces as separators.
Result is returned as a list of sub-words. Optionally, a word composed of delimmiter characters can be provided.
Example:
"l := parse "|here are words|
print :l
print count :l
print (parse "|12.3, 45.6, 78.9| "| ,|)
Output:
[here are words]
3
[12.3 45.6 78.9]
See also:
List
Table of Content