textjoin
Concatenate text values with a delimiter.
Syntax
Section titled “Syntax”v = textjoin(delimiter, ignore_empty, text1, text2, ...)Description
Section titled “Description”Returns the concatenation of arguments separated by delimiter. With ignore_empty = true, empty strings are skipped (no double-delimiter). Useful for building CSV-like strings.
Examples
Section titled “Examples”textjoin(', ', true, 'a', '', 'b', 'c') % 'a, b, c'textjoin('-', false, '2026', '04', '28') % '2026-04-28'