Template:String-handling templates: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>DePiep
No edit summary
m (104 revisions imported)
 
(46 intermediate revisions by 21 users not shown)
Line 1: Line 1:
{{navbox
{{Navbox with collapsible groups
| title= String handling templates
| name = String-handling templates
| name=Template:Navbox string handling templates
| state = {{{state|expanded}}}
| state={{{state}|}}}
| bodyclass = plainlist
| title = String-handling templates
| selected = {{{selected|{{{expanded|{{{1|}}}}}}}}}


| above=''As of February 2013, these templates are being optimised using [[WP:Lua|Lua]] modules. See also: [[Template:Navbox string handling templates|here]].''
<!---------------------- Trimming ------------------------->
| group1 = [[Trim (programming)|Trim]] by counting
| abbr1 = trim
| list1=
| sect1 = [[Trimming (computer programming)|Trimming]]
* {{tl|Str mid}} – To return a substring, specified by its position and length.
| content1 =
* {{tl|Trunc}} – To trim down to a specified number of characters.
{{Navbox |child
* {{tl|Str left}} – To trim down to a specified number of characters, or duplicate the string to a specified number.
* {{tl|Str crop}} – To crop a specified number of characters off the end.
* {{tl|Chop head and tail}} – To crop a specified number of characters off the beginning and end.
* {{tl|Str right}} – To trim the first specified number of characters.
* {{tl|Str rightc}} – To return a number of characters from the end, returns a parameter if the string is empty.
* {{tl|Str rightmost}} – To trim down to the last specified number of characters.
* {{tl|Str sub old}} – To trim down to a specified number, starting at a given number from the left.
* {{tl|Str sub new}} – Select a substr based on starting and ending index.
* {{tl|Str index}} – Returns a given character from a string, but not accented letters.


| group2=Trim by checking
  | group1 = By counting
| list2=
  | list1 =
* {{tl|Trim}} To trim any leading or trailing whitespace ({{tl|Strip whitespace}} does so too, but is less effective)
  {{Aligned table |fullwidth=on |style=text-align:left; |col1width=50%;
* {{tl|First word}} To trim down to the first space.
    | {{Aligned table |style=padding-right:2.5em;
* {{tl|Remove first word}} To remove anything before the first space.
      |col1style=width:12.5em;text-align:right;white-space:nowrap;padding-right:0.75em;
* {{tl|Str letter/trim}} To trim down to the beginning letters.
      | {{tl|str mid}}       | To return a substring specified by position and length.
* {{tl|Str number/trim}} To trim down to the beginning numbers.
      | {{tl|trunc}}         | To trim down to a specified number of characters.
      | {{tl|str left}}     | To trim down to a specified number of characters or duplicate the string to a specified number.
      | {{tl|str crop}}      | To crop a specified number of characters off the end.
      | {{tl|chop head and tail}} | To crop a specified number of characters off the beginning and end.
      }}
    | {{Aligned table
      |col1style=width:12.5em;text-align:right;white-space:nowrap;padding-right:0.75em;
      | {{tl|str right}}    | To trim the first specified number of characters.
      | {{tl|str rightc}}   | To return a number of characters from the end, returns a parameter if the string is empty.
      | {{tl|str rightmost}} | To trim down to the last specified number of characters.
      | {{tl|str sub old}}   | To trim down to a specified number, starting at a given number from the left.
      | {{tl|str sub new}}  | Select a substr based on starting and ending index.
      | {{tl|str index}}    | Returns a given character from a string, but not accented letters.
      | {{tl|Plain text}}, {{tl|Nowiki}}    | Strips wikicode from a string.
  }} }}


| group3= Insert strings
  | group2 = By checking
|list3=
  | list2 =
* {{tl|Repeat}} – Repeat character string n times
  {{Aligned table |fullwidth=on |style=text-align:left; |col1width=50%;
* {{tl|Replace}} – Returns the string, after replacing ''all'' occurrences of a specified string with another string.
    | {{Aligned table |style=padding-right:2.5em;
* {{tl|Strloc insert}} – Inserts a string at character location strloc, or appends if strloc<=0.
      |col1style=width:12.5em;text-align:right;white-space:nowrap;padding-right:0.75em;
* {{tl|Strloc prefix}} – Extracts string prefix up to location strloc, or whole string if strloc<=0.
      | {{tl|trim}}                | To trim any leading or trailing whitespace
* {{tl|Str rep|Str rep}} – Returns the string, after replacing the first occurrence of a specified string with another string.
      | {{tl|str letter/trim}}     | To trim down to the beginning letters.
      | {{tl|str number/trim}}     | To trim down to the beginning numbers.
      | {{tl|trim brackets}}       | To trim any leading or trailing square brackets.
      | {{tl|trim quotes}}        | To trim leading or trailing matching quotes.
      }}
    | {{Aligned table
      |col1style=width:12.5em;text-align:right;white-space:nowrap;padding-right:0.75em;
      | {{tl|first word}}         | To trim down to the first space.
      | {{tl|remove first word}}  | To remove anything before the first space.
      | {{tl|last word}}           | To trim down from the last space.
      | {{tl|remove last word}}    | To remove anything after the last space.
  }} }}


|group4= Length
  | group3 = Dedicated
|list4=
  | list3 =
* {{tl|Str len}} – Returns a string's length.
  {{Aligned table |fullwidth=on |style=text-align:left; |col1width=50%;
* {{tl|iflenge}} – IF LENgth Greater then or Equal to.
    | {{Aligned table |style=padding-right:2.5em;
* {{tl|Str ≥ len}} To check if a string is "longer or equally long" or "shorter" than a given length.
      |col1style=width:12.5em;text-align:right;white-space:nowrap;padding-right:0.75em;
* {{tl|Str ≤ len}} – To check if a string is "shorter or equally long" or "longer" than a given length.
      | {{tl|delink}}, {{tl|trim brackets}}             | Removes wikilink brackets (wikicode); ''all'' or ''outer only''.
* {{tl|Str ≠ len}} – To check if a string is "not equal" or "equal" to a given length.
      | {{tl|remove file prefix}} | Removes "File:" (or "Image:") from filenames.
* {{tl|Str ≤ ≥ len}} – To check if a string is "shorter", "equal", or "longer" than a given length.
      | {{tl|PAGENAMEBASE}}       | To trim off any parenthesis text at the end of a string (disambiguation).
      | {{tl|title disambig text}} | Returns text in parentheses at the end of a string (disambiguation).
      }}
    | {{Aligned table
      |col1style=width:12.5em;text-align:right;white-space:nowrap;padding-right:0.75em;
      | {{tl|WikiProjectbasename}} | Removes "WikiProject" from a pagename.
      | {{tl|remove unranked}}     | Removes the string "unranked_" from the left of a string (taxonomy).
      | {{tl|ship prefix}}        | Returns the length of a ship's name prefix, if listed (ship names).
      | {{tl|title year}}         | Returns the 4-digit year from a pagename, if any.
      | {{tl|title decade}}        | Returns the 4-digit decade (e.g. "1740s") from a pagename, if any.
  }} }}
}}


| group5=Analyse string
<!----------- Insertion, replacement, length -------------->
| list5=
| abbr2 = IRL
* {{tl|Str endswith}} – To check if a string ends with a given string.
| sect2 = Insertion, replacement and length
* {{tl|Str find}} Returns the numerical location of a given string in a string.
| content2 =
* {{tl|Strfind short}} Returns the numerical location of a given string in a string.
{{Aligned table |style=margin:0 auto 0;text-align:left;
* {{tl|Str find0}} – Zero-based substring search.
  |  <!---(Insertion, replacement)--->
* {{tl|Str sub find}} – Searches a substring in a string at the given offset.
    {{Aligned table |style=padding-right:2.5em;
* {{tl|ASCII code}} – Returns the ASCII value of a single character.
    |col1style=text-align:right;white-space:nowrap;padding-right:0.75em;
* {{tl|Str letter}} – Returns the number of letters that begin a string.
    | {{tl|strloc insert}} | Inserts a string at character location strloc, or appends if strloc<{{=}}0.
* {{tl|Str number}} – Returns the number of numbers that begin a string.
    | {{tl|loop}}          | Repeat character string a specified number of times.
* {{tl|Str gtr str}} – Compares two strings for alphabetical order, and returns a value accordingly.
    | {{tl|replace}}       | Returns the string, after replacing ''all'' occurrences of a specified string with another string.
    | {{tl|str rep}}       | Returns the string, after replacing the first occurrence of a specified string with another string.
    | {{tl|digits}}       | Returns the string, after removing all characters that are not digits 0–9
    }}
  |  <!---(Length)--->
    {{Aligned table
    |col1style=text-align:right;white-space:nowrap;padding-right:0.75em;
    | {{tl|str len}}       | Returns a string's length.
    | {{tl|str ≥ len}}     | To check if a string is "longer or equally long" or "shorter" than a given length.
    | {{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 "not equal" or "equal" to a given length.
    | {{tl|str ≤ ≥ len}}   | To check if a string is "shorter", "equal", or "longer" than a given length.
}} }}


| group6=Trim, dedicated
<!----------------- Analysis, technical ------------------->
| list6=
| abbr3 = anlys/tech
* {{tl|WikiProjectbasename}} - Removes "WikiProject" from a pagename
| sect3 = Analysis and technical
* {{tl|Remove unranked}} - Removes the string "unranked_" from the left of a string (taxonomy).
| content3 =
* {{tl|Ship prefix}} Returns the length of a ship name prefix, if listed (ship names).
{{Aligned table |style=margin:0 auto 0;text-align:left;
* {{tl|Title without disambig}} – To trim off any parenthesis text at the end of a string  (disambiguation).
  |  <!---(Analysis)--->
* {{tl|Title disambig text}} Returns text in parenthesis at the end of a string (disambiguation).
    {{Aligned table |style=padding-right:2.5em;
* {{tl|Unlink}} – Removes wikilink brackets (wikicode).
    |col1style=text-align:right;white-space:nowrap;padding-right:0.75em;
    | {{tl|str endswith}} | To check if a string ends with a given string.
    | {{tl|str find}}<br/>{{tl|strfind short}} |style2.2=vertical-align:middle;| Returns the numerical location of a given string in a string.
    | {{tl|str find0}}    | Zero-based substring search.
    | {{tl|str sub find}}  | Searches a substring in a string at the given offset.
    | {{tl|str letter}}   | Returns the number of letters that begin a string.
    | {{tl|str number}}   | Returns the number of numbers that begin a string.
    | {{tl|str gtr str}}  | Compares two strings for alphabetical order, and returns a value accordingly.
    }}
  | <!---(Analysis cont'd)--->
    {{Aligned table
    |col1style=text-align:right;white-space:nowrap;padding-right:0.75em;
    | {{tl|ASCII code}}   | Returns the ASCII value of a single character.
    | {{tl|a or an}}      | Takes a noun and produces the appropriate indefinite article, based on whether the first letter is a vowel.
    | {{tl|Isnumeric}}    | Returns number when true, blank when not numeric.
    | &nbsp; | &nbsp;
    | {{tl|Count on page}} | Counts how many times a string is used on a page
    | {{tl|String on page}}| Finds if yes/no a string is used on a page
    | &nbsp; | &nbsp;
    <!---(Technical)--->
    | [[mw:Help:Magic words|...Magic words]] | {{noitalic|About <code><nowiki>{{padleft:&#124;}}</nowiki></code>.}}
    | [[mw:Help:Extension:ParserFunctions|...ParserFunctions]] | {{noitalic|About <code><nowiki>{{#titleparts:&#124;}}, {{#expr:&#124;}}, {{#ifeq:&#124;}}, </nowiki></code> etc.}}
}} }}


|group11=Technical developments
| group12 = Generic: [[:Module:String]]
|list11=
* [[Module:String]]
* [[mw:Help:Magic words]] – About <code><nowiki>{{padleft:|}}</nowiki></code>.
* [[mw:Help:Extension:ParserFunctions]] – About <code><nowiki>{{#titleparts:|}}, {{#expr:|}}, {{#ifeq:|}}, </nowiki></code> etc.


|group12=Feature requests
<!--------------------- (disabled) ------------------------>
|list12
<!----
| group12 = Feature requests
| list12 =
* [[bugzilla:6455]] – Set $wgPFEnableStringFunctions = true on WMF wikis
* [[bugzilla:6455]] – Set $wgPFEnableStringFunctions = true on WMF wikis
* [[bugzilla:26092]] – Enable or install string parsing wikimarkup functionality on WMF wikis
* [[bugzilla:26092]] – Enable or install string parsing wikimarkup functionality on WMF wikis


<!-- not in a navbox
<!----Not in a navbox:
|group13=[[Wikipedia:Template sandbox and test cases|Sandboxes and test cases]]:
| group13 = [[Wikipedia:Template sandbox and test cases|Sandboxes, testcases]]
|list13=
| list13 =
 
* {{tl|Str find/sandbox}}
* {{tl|Str find/sandbox}}
* {{tl|Str index/getchar/sandbox}}
* {{tl|Str index/getchar/sandbox}}
Line 94: Line 154:
* {{tl|Str ≠ len/sandbox}}
* {{tl|Str ≠ len/sandbox}}
* {{tl|Str ≠ len/testcases}}
* {{tl|Str ≠ len/testcases}}
-->
----->
| below=  
 
<!----------------------- below --------------------------->
| belowclass = hlist
| below =
* [[:Category:String manipulation templates]]
* [[:Category:String manipulation templates]]
* [[m:Category:String templates]]
* [[m:Category:String templates]]
* [[:commons:Category:String manipulation templates]]
* [[:commons:Category:String manipulation templates]]
| belowclass=hlist
}}<noinclude>


{{documentation}}
| tracking = no <!--(keep all these string templates (by /doc pages) out of the tracking category)-->
</noinclude>
 
}}<noinclude>{{Documentation}}</noinclude>

Latest revision as of 14:49, 3 September 2020