syntax:functions:setdifference
This is an old revision of the document!
Table of Contents
SetDifference(list1, list2[, separator])
Category: Text function
Description
This function sremoves values in list2 from list1 with deduplication.
Arguments
Argument | Type | Description |
---|---|---|
list1 | List (Text) | A delimited set of string values. |
list2 | List (Text) | A delimited set of string values. |
separator | Text | The delimiter to use in the concatenation of the output string. If not defined, the default is comma. |
Return value type: Set (Text)
Remarks
All leading and trailing spaces are removed from around the list values.
Examples
setdifference("A, B", "B,C") //returns "A" setdifference("A;B", "C ;D", ";") //returns "A;B"
See also
syntax/functions/setdifference.1712901861.txt.gz · Last modified: 2024/04/12 02:04 by craigt