listAppend: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page listAppend to ListAppend without leaving a redirect: Converting page title to first-letter uppercase) |
m (Conversion script moved page ListAppend to listAppend: Converting page titles to lowercase) |
(No difference)
|
Revision as of 22:57, 9 February 2023
listAppend() Function
• Introduced in version 1.3b42
Returns a string list with a value appended to the end of the string list.
Usage
listAppend(list, value)
listAppend(list, value, delim)
If delim is not specified then the default value of ',' is used to separate the values in the string list
Examples
[r: listAppend("This, is, a", "test")]
Returns This, is, a, test
[r: listAppend("This: is: a:", "test", ":")]