Operations ‣ Rules ‣ Utilities ‣ Tools ‣ joinText
Merges the input arguments text1
, text2
, … to a single text, separated by a separator
.
Instead of single values, one or more lists can be given. Single values and lists can be mixed.
Examples
-
joinText(' - ', 'ene')
→ ‘ene’ -
joinText(' - ', 'ene', 'mene', 'muh')
→ ‘ene - mene - muh’ -
joinText(' - ', ['ene', 'mene'], 'muh')
→ ‘ene - mene - muh’