listReplace: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Macros:Functions:listReplace moved to listReplace) |
Verisimilar (talk | contribs) m (Added version.) |
||
Line 1: | Line 1: | ||
{{MacroFunction | {{MacroFunction | ||
|name=listReplace | |name=listReplace | ||
|version=1.3b42 | |||
|description= | |description= | ||
Replaces the element at the specified index of a [[Macros:string list|string list]] with a new value. If a delimiter is not specified then the default value of ',' is used. The index for lists starts at 0 | Replaces the element at the specified index of a [[Macros:string list|string list]] with a new value. If a delimiter is not specified then the default value of ',' is used. The index for lists starts at 0 | ||
Line 6: | Line 7: | ||
|usage= | |usage= | ||
<source lang="mtmacro" line> | <source lang="mtmacro" line> | ||
listReplace(list, index, value) | |||
</source> | |||
<source lang="mtmacro" line> | |||
listReplace(list, index, value, delim) | |||
</source> | </source> | ||
Revision as of 10:29, 10 March 2009
listReplace() Function
• Introduced in version 1.3b42
Replaces the element at the specified index of a string list with a new value. If a delimiter is not specified then the default value of ',' is used. The index for lists starts at 0
Usage
listReplace(list, index, value)
listReplace(list, index, value, delim)
Example
[r: listReplace("This, isnt, a , test", 1, "is")]
Returns This, is, a, Test
[r: listReplace("This: isnt: a: test", 1, "is", ":")]