Concatenates two or more strings into one delimited list and returns the result.
ConcatWithDelimiter(Delimiter:String,SkipBlanks:Boolean,Items:String)
Delimiter is the character to use to delineate items in the string list. Supported special characters:
[comma]
[space]
[tab]
Note: | You must use the name of the delimiter (not the character) and include brackets around the name. |
SkipBlanks indicates whether to skip blank values in the list of strings. Valid values: 1, 0, T, F, t, f.
Items specifies the list of strings to concatenate.
ConcatWithDelimiter([comma],1,Item1,Item2,Item3,Item4)
Return value is Item1; Item2; Item3; Item4.