PING
0.9
Statistical data handling and processing in production environment
|
Remove one or more items from an unformatted list.
list
: a list of blank separated strings;item
: (list of) item(s) to remove from the list;casense
: (option) boolean flag (yes/no
) set to perform cases sensitive search/matching; default: casense=no
, i.e. all (low-case or upper-case) occurrences of the pattern item
will be removed;sep
: (option) character/string separator in input list; default: %quote( )
, i.e. sep
is blank.res
: output list where all occurences of the item(s) present in both item
and list
lists have been removed.
returns: mylist=DE BE NL SE
, while similarly:
returns: mylist=0 1 2 3 3.5
.
Run macro %_example_list_remove
for more examples.