Template:String templates see also: Difference between revisions
Template page
More actions
Template:String-handling templates |
Replace [[:en: with [[:w: (en interwiki not configured) |
||
| Line 134: | Line 134: | ||
}} | }} | ||
[[: | [[:w:Trim (programming)|Trimming]] templates: | ||
* {{tl|Trunc}} – To trim down to a specified number of characters. | * {{tl|Trunc}} – To trim down to a specified number of characters. | ||
* {{tl|Trim}} — To trim any leading or trailing whitespace. | * {{tl|Trim}} — To trim any leading or trailing whitespace. | ||
| Line 150: | Line 150: | ||
* {{tl|Str ≤ len}} – To check if a string is "shorter or equally long" or "longer" than a given length. | * {{tl|Str ≤ len}} – To check if a string is "shorter or equally long" or "longer" than a given length. | ||
[[: | [[:w:Wikipedia:Template sandbox and test cases|Sandboxes and test cases]]: | ||
* {{tl|Str len/sandbox}} | * {{tl|Str len/sandbox}} | ||
Latest revision as of 09:11, 12 August 2026
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