Joins text items into one text item with a separator between each of them.
StringJoin([Separator],[List])
Where:
Separator is the text to use as a separator.
List is the list of text items to join together with a separator.
Rule | Meaning |
---|---|
StringJoin("#","A|B|C|D|E|F") | This will return "A#B#C#D#E#F" |
StringJoin(",","A|B|C","D|E|F") | This will return "A|B|C|D|E|F" |
StringJoin("|",DWVariableCustomerAtoD,DWVariableCustomerEtoH) | This will return "ACust|BCust|CCust|DCust|ECust|FCust|GCust|HCust" |