Difference between revisions of "Template:Str rightc/doc"

From RimWorld Wiki
Jump to navigation Jump to search
(Blatantly taken from wikipedia. I'll have to edit this several times, unfortunately.)
 
 
Line 21: Line 21:
 
== TemplateData ==
 
== TemplateData ==
  
{{TemplateDataHeader}}
 
 
<templatedata>
 
<templatedata>
 
{
 
{
Line 52: Line 51:
 
{{String-handling templates |sub}}-->
 
{{String-handling templates |sub}}-->
  
<includeonly>{{Sandbox other||
+
<includeonly>
 
<!----CATEGORIES BELOW THIS LINE, PLEASE:---->
 
<!----CATEGORIES BELOW THIS LINE, PLEASE:---->
 
[[Category:String manipulation templates]]
 
[[Category:String manipulation templates]]
}}</includeonly>
+
</includeonly>

Latest revision as of 03:35, 23 December 2024


Taken from here: https://en.wikipedia.org/wiki/Template:Str_rightc/doc

Usage[edit]

{{str rightc|<string>|<count>}}
{{str rightc|<string>|<count>|<result if empty>}}

Gives a substring of length <count> characters from the right-side end of the string, or, if provided, returns <result if empty> when string is empty.

Examples[edit]

  • {{str rightc |Lorem ipsum dolor sit amet |10}} → r sit amet
  • {{str rightc |Lorem ipsum dolor sit amet |1}} → t
  • {{str rightc |Lorem ipsum dolor sit amet |0}}
  • {{str rightc | |1 |string is empty}} → string is empty
  • {{str rightc |123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-1 |99}} → 3456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-1

TemplateData[edit]

<templatedata> {

       "description": "Gives the right most <count> characters of a string.",
       "params": {
               "1": {
                       "label": "String",
                       "description": "The string to be trimmed",
                       "type": "string",
                       "required": true
               },
               "2": {
                       "label": "Count",
                       "description": "The number of characters from the right to return",
                       "type": "number",
                       "required": true
               },
               "3": {
                       "label": "result if empty",
                       "description": "The result if the string is empty",
                       "type": "string",
                       "required": false
               }
       }

} </templatedata>