Transforms
To Upper/Lower/Snake/Camel/Title, Reverse String. Input: text → Output: transformed text.
Regex Extract
Inputs: text, pattern, group → Output: match.
Split String
Inputs: text, delimiter → Output: parts (LIST). Great with ForEach.
Join List
Inputs: items (LIST), delimiter → Output: joined string. If delimiter is empty, items are concatenated directly.