![]() |
PING
0.9
Statistical data handling and processing in production environment
|
Transform a parentheses-enclosed, comma-separated, and quote-enhanced list of items into an unformatted/unquoted list.
clist : a list of items comma-separated by a delimiter (e.g., quotes) and in between parentheses;mark : (option) character/string used as "quote" the elements in the input list; note the particular case where it is passed as mark=_EMPTY_ then it is set to mark=%quote(); default: mark is the double quote ";sep : (option) character/string separator in input list; default: %quote(,), i.e. sep the input list is comma separated;rep : (option) character/string used to replace the separator in the output list; default: %quote( ), i.e. rep is blank by default.list : output unformatted list of (unquoted) strings.
returns list=A B C D E.
Run macro %_example_clist_unquote for more examples.
returns list=A B C D E, while other possible uses include:
which all display a,b,c.
will return list=A D E.
since then clist1=clist2.
(see also references in %list_quote)