•Text
•TextSplit
Takes a pattern and divides a String into an ordered list of substrings by searching for the pattern, puts these substrings into an array, and returns the array.
•Input parameters
separator
(Text: <required>)
- Specifies the separator to use when splitting the string.text
(Text: <required>)
- Text value.
•Output parameters
result
(Array [Text])
- An Array of strings, split at each point where the separator occurs in the given string.
•Example
•TextReplace
Returns a new string with all matches of a pattern replaced by a replacement.
•Input parameters
pattern
(Text: <required>)
- The string to search for.replacement
(Text: <required>)
- The string to replace the old value with.text
(Text: <required>)
- Text value.
•Output parameters
result
(Text)
- Returns a copy of the string where the old substring is replaced with the new substring.
•Example