listAppend: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Applied Template:MacroFunction) |
Verisimilar (talk | contribs) m (Macros:Functions:listAppend moved to listAppend) |
(No difference)
|
Revision as of 02:39, 9 March 2009
listAppend() Function
Returns a string list with a value appended to the end of the string list.
Usage
[h: list = listAppend(list, value)]
[h: list = 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", ":")]