listAppend: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added version.)
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 6: Line 6:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
listAppend(list, value)
listAppend(list, value)
</source>
</syntaxhighlight>
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
listAppend(list, value, delim)
listAppend(list, value, delim)
</source>
</syntaxhighlight>


If delim is not specified then the default value of ',' is used to separate the values in the [[Macros:string list|string list]]
If delim is not specified then the default value of ',' is used to separate the values in the [[Macros:string list|string list]]


|examples=
|examples=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: listAppend("This, is, a", "test")]
[r: listAppend("This, is, a", "test")]
</source>
</syntaxhighlight>
Returns This, is, a, test
Returns This, is, a, test


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: listAppend("This: is: a:", "test", ":")]  
[r: listAppend("This: is: a", "test", ":")]  
</source>
</syntaxhighlight>
Returns This: is: a: test
Returns This: is: a: test
}}
}}
[[Category:String List Function]]
[[Category:String List Function]]

Latest revision as of 14:51, 12 January 2024

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", ":")]
Returns This: is: a: test