Template:Str sub/doc: Difference between revisions
Template page
More actions
m 13 revisions from en:Template:Str sub/doc |
No edit summary |
||
| Line 15: | Line 15: | ||
[[de:Vorlage:Str sub]] | [[de:Vorlage:Str sub]] | ||
[[en:Template:Str sub]] | |||
[[es:Plantilla:Str sub]] | [[es:Plantilla:Str sub]] | ||
[[id:Templat:Str sub]] | [[id:Templat:Str sub]] | ||
Revision as of 14:46, 24 January 2011
Usage
{{str_sub|text|start|length}} = Substring of text starting at start and containing length characters. Base 0: the first character is numbered 0, and so on, e.g. {{str_sub|20090624130510|8|2}} returns the 2 characters starting at the 9th, i.e. "13"
start + length must be less than 50. Only operates on a limited character set.
See also
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