Template:Replace string
This documentation is transcluded from Template:Replace string/doc.
Category:Main message boxesCategory:Lua String-based templates
Usage
{{replace|string|target|replacement|count=n}}
Returns string with the first n occurrences of target replaced with replacement. Omitting count will replace all occurrences. Space counts as a character if placed in any of the first three parameters.
Examples
{{replace|One two two three two four twotwo five|two|NINE}}→ replace{{replace|One two two three two four twotwo five|two|NINE|count=2}}→ replace{{replace|foo_bar|_| }}→ replace
Space
{{replace|One-two two-three two-four twotwo-five|-|—}}→ replace{{replace|One-two two-three two-four twotwo-five|- |—}}→ replace
See also
- {{Str rep}}, which replaces only the first occurrence of a string.
- mw:Extension:ParserFunctions/String functions##replace
Trimming templates:
- {{Trunc}} – To trim down to a specified number of characters.
- {{Trim}} — To trim any leading or trailing whitespace.
- {{Str left}} – To trim down to a specified number of characters, or duplicate the string to a specified number.
- {{Str right}}
- {{Strip}} – To strip (remove) a given number of characters from the beginning/end of the string
Analyzing templates:
- {{Str endswith}} – To check if a string ends with a given string.
- {{Str find}} – Returns the numerical location of a given string in a string, up to 50 characters.
- {{Str len}} – Returns a string's length. Can count up to 500 characters.
String length comparison templates:
- {{Str ≤ len}} – To check if a string is "shorter or equally long" or "longer" than a given length.
Technical stuff:
- mw:Help:Magic words – About
{{padleft:|}}. - mw:Help:Extension:ParserFunctions – About
{{#titleparts:|}}, {{#expr:|}}, {{#ifeq:|}},etc. - Module:String - Script with native string parsing Category:String manipulation templates