Removes an item in a list.
SppRemoveTextFromList([List],[Item To Remove])
Where:
List is a pipebar (|) delimited list of items.
Item To Remove is the list item to remove.
Rule | Result | Meaning |
---|---|---|
SppRemoveTextFromList("A|B|C|D","B") | A|C|D | Will return a list with the specified list item removed if it exists. |