Template:Replace/doc
Jump to navigation
Jump to search
This is a documentation subpage for Template:Replace. It contains usage information, categories and other content that is not part of the original template page. |
{{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 |