List
Create List With

Create a list with any number of items. Click the ⚙️ button to add, remove, or reorder sections.
Example: “apple”, “banana”, “grape” → [“apple”, “banana”, “grape”]
- Input [type]: item1 [Any type], item2 [Any type]…
- Output [type]: list [List]
Create List with Item Repeated

Creates a list consisting of the given value repeated the specified number of times.
Example: “hello” repeated 3 times → [“hello”, “hello”, “hello”]
- Input [type]: item [Any type], repeat count [Number]
- Output [type]: list [List]
Length of List

Returns the length of a list.
Example: [“apple”, “banana”, “grape”] → 3
- Input [type]: list [List]
- Output [type]: number of items [Number]
Is Empty List

Returns true if the list is empty.
Example: [] → true, [“apple”] → false
- Input [type]: list [List]
- Output [type]: empty status [Digital]
Find Item in List

Returns the index of the first/last occurrence of the item in the list. Returns 0 if item is not found.
Example: first occurrence of “apple” in [“apple”, “banana”, “apple”] → 1
- Input [type]: list [List], item [Any type]
- Output [type]: item position [Number]
Get/Remove Item from List

Gets, gets and removes, or removes an item at a specific position in the list. Position starts from 1, and #1 is the first item.
• Get: Returns the item without modifying the original list
• Get and remove: Returns the item and removes it from the list
• Remove: Removes the item with no return value
- Input [type]: list [List], (position [Number])
- Output [type]: (item [Any type]) or none
Set/Insert Item in List

Sets or inserts an item at a specific position in the list. Position starts from 1, and #1 is the first item.
• Set: Replaces existing item with new item
• Insert: Inserts new item between existing items
Example: insert “X” at position 2 in [“A”, “B”, “C”] → [“A”, “X”, “B”, “C”]
- Input [type]: list [List], (position [Number]), item [Any type]
- Output [type]: none
Get Sub-list

Creates a copy of the specified portion of a list.
Example: get from position 2 to 4 in [“A”, “B”, “C”, “D”, “E”] → [“B”, “C”, “D”]
- Input [type]: original list [List], start position [Number], end position [Number]
- Output [type]: extracted list [List]
Split Text/Join List

Split text into a list of texts, breaking at each delimiter, or join a list of texts into one text, separated by a delimiter.
• Text to list: “apple,banana,grape” split by “,” → [“apple”, “banana”, “grape”]
• List to text: [“apple”, “banana”, “grape”] joined by “,” → “apple,banana,grape”
- Input [type]: text [Text], delimiter [Text] or list [List], delimiter [Text]
- Output [type]: list [List] or text [Text]
Sort List

Sort a copy of a list.
Sort options: numeric, alphabetic, alphabetic (ignore case)
Order options: ascending, descending
Example: [3, 1, 4, 1, 5] numeric ascending → [1, 1, 3, 4, 5]
- Input [type]: original list [List]
- Output [type]: sorted list [List]