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 page. |
| Dependencies: |
{{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. | String | required |
| Pattern | 2 | The string or Lua ustring pattern to search for. | String | required |
| Replacement | 3 | The replacement text. | Line | required |
| Count | count | The number of occurrences to replace; defaults to all. | Number | optional |
| Regular expression | regex | Whether the pattern is a Lua ustring pattern (no means search for literally that character sequence).
| Boolean | optional |