Skip to main content

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 text converted to lowercase, uppercase, or title case.
  • Text Index Of: Returns the zero-based position of find inside value.
  • Text Is Empty: Returns true when value is 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 text with occurrences of from replaced by to.
  • Trim Text: Removes leading and trailing whitespace from a text value.