Text
- For Each Text Line: Iterates over the lines of a text value and can trim lines and skip empties before running the body.
- Split Text: Splits text into a list using either a literal separator or collapsed whitespace runs.
- Text Case: Returns
textconverted to lowercase, uppercase, or title case. - Text Index Of: Returns the zero-based position of
findinsidevalue. - Text Is Empty: Returns
truewhenvalueis an empty string. - Text Join: Concatenates all items into one string in the given order.
- Text Length: Returns the number of characters in
value. - Text Replace: Returns a copy of
textwith occurrences offromreplaced byto. - Trim Text: Removes leading and trailing whitespace from a text value.