Returns any items from a list that have been duplicated/repeated.
SppListGetDuplicates([ListToParse])
Where:
ListToParse is the string or variable of items to find duplicates from.
Rule | Result | Meaning |
---|---|---|
SppListGetDuplicates("1|2|2|3|3|3|4|4|4|4|5") | 2|3|4 | The Values 2,3 and 4 have been duplicated. |
SppListGetDuplicates(DWVariableList) | 2|3|4 | The Values 2,3 and 4 have been duplicated. |