Skip to main content

List Operations

Split Text into List

Splits a text string into a list of pieces.

  • Input: "a,b,c"
  • Delimiter: ","
  • Result: ['a', 'b', 'c']

Join List into Text

Combines a list of items into a single text string.

  • Input: ['a', 'b', 'c']
  • Delimiter: "-"
  • Result: "a-b-c"

Sort List

Sorts the items in a list (numerically or alphabetically).

  • Type: Numeric, Text, or Case-insensitive Text.
  • Direction: Ascending (A-Z, 0-9) or Descending (Z-A, 9-0).