-
Notifications
You must be signed in to change notification settings - Fork 83
Strings
pozil edited this page May 7, 2020
·
1 revision
These extensions deal with string operations.
Table of content
Formats a list of strings into a CSV string.
Type: Invocable Action
Inputs:
Name | Type | Description |
---|---|---|
strings | List<String> |
List of strings |
separator | String |
Optional list separator. Defaults to a comma. |
Outputs:
Name | Type | Description |
---|---|---|
csvString | String |
CSV string |
Parses a CSV string into a list of strings.
Type: Invocable Action
Inputs:
Name | Type | Description |
---|---|---|
csvString | String |
CSV string |
separator | String |
Optional list separator. Defaults to a comma. |
trimValues | Boolean |
Whether values should be trimmed from whitespace. Defaults to true. |
Outputs:
Name | Type | Description |
---|---|---|
strings | List<String> |
Parsed strings |
ℹ️ These components are part of the Apex Formula Evaluator package.