STRING_APPEND
Description
Appends an item to an existing string, with the separator placed between them.
Syntax
STRING_APPEND(existing_string, item, separator) -> String
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| existing_string | String | Yes | The string to append to. |
| item | String | Yes | The string to append. |
| separator | String | Yes | The delimiter placed between the existing string and the item. |
Example
STRING_APPEND(ProductOfInterest__c, "Analytics", ";")
-- Returns "CRM;Marketing Automation;Analytics" when ProductOfInterest__c contains "CRM;Marketing Automation".