Removes all matching items from a pipebar delimited list (|) using a case sensitive comparison.
ListRemoveItem[List],[Item])
Where:
List is the list to remove matching items from.
Item is the item remove from the list.
Rule | Result |
---|---|
ListRemoveItem("A|B|C|D|E|F","C") | This will return "A|B|D|E|F" |