listInsert: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Applied Template:MacroFunction) |
No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{MacroFunction | {{MacroFunction | ||
|name=listInsert | |name=listInsert | ||
|version=1.3b42 | |||
|description= | |description= | ||
Inserts a value into the [[Macros:string list|string list]] at the specified index. If a delimiter is not specified then the default value of ',' is used. The index for lists starts at 0 | Inserts a value into the [[Macros:string list|string list]] at the specified index. If a delimiter is not specified then the default value of ',' is used. The index for lists starts at 0 | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
listInsert(list, index, value) | |||
</syntaxhighlight> | |||
</ | <syntaxhighlight lang="mtmacro" line> | ||
listInsert(list, index, value, delim) | |||
</syntaxhighlight> | |||
|example= | |example= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: listInsert("This, a , test", 1, "is")] | [r: listInsert("This, a , test", 1, "is")] | ||
</ | </syntaxhighlight> | ||
Returns This, is, a, Test | Returns This, is, a, Test | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: listInsert("This: a: test", 1, "is", ":")] | [r: listInsert("This: a: test", 1, "is", ":")] | ||
</ | </syntaxhighlight> | ||
Returns This: is: a: test | Returns This: is: a: test | ||
}} | }} | ||
[[Category:String List Function]] | [[Category:String List Function]] |
Latest revision as of 20:08, 15 March 2023
listInsert() Function
• Introduced in version 1.3b42
Inserts a value into the string list at the specified index. If a delimiter is not specified then the default value of ',' is used. The index for lists starts at 0
Usage
listInsert(list, index, value)
listInsert(list, index, value, delim)
Example
[r: listInsert("This, a , test", 1, "is")]
Returns This, is, a, Test
[r: listInsert("This: a: test", 1, "is", ":")]