Difference between revisions of "Template:Replace"
Jump to navigation
Jump to search
Mediawiki>DannyS712 m (Protected "Template:Replace": Highly visible template ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only administrators] (indefinite))) |
Joelmartin (talk | contribs) m (1 revision imported) |
(No difference)
|
Latest revision as of 17:53, 21 December 2019
{{replace |string |target |replacement [|count=n]}}
Returns string with the first n occurrences of target replaced with replacement. Omitting count
will replace all occurrences.
Examples
{{replace |One two two three two four twotwo five |two |NINE}}
→ One NINE NINE three NINE four NINENINE five{{replace |One two two three two four twotwo five |two |NINE |count=2}}
→ One NINE NINE three two four twotwo five
TemplateData
This template replaces a substring in a string with a given replacement.
Parameter | Description | Type | Status | |
---|---|---|---|---|
source string | 1 | The string to replace in | Unknown | required |
pattern | 2 | The string or Lua ustring pattern to search for | Unknown | required |
replacement | 3 | The replacement text | Unknown | required |
count | count | The number of occurrences to replace; defaults to all | Number | optional |
regex | regex | Whether the pattern is a Lua ustring pattern (no means search for literally that character sequence)
| Boolean | optional |