Removes an item in a list at a specified index.
SppRemoveItemFromList([List],[Index])
Where:
List is a pipebar (|) delimited list of items.
Index is a number starting at 1 representing the index of the item to remove.
Rule | Result | Meaning |
---|---|---|
SppRemoveItemFromList("A|B|C",2) | A|C | Will remove the second item from the list. |