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

From Ava Zinn Wiki
Jump to: navigation, search
[unchecked revision][unchecked revision]
(Examples: example with error message)
(Returns for a blank space.)
Line 5: Line 5:
 
<nowiki>{{str index|</nowiki>''text''|''number''<nowiki>}}</nowiki> = Returns the ''number''-th character of ''text''.
 
<nowiki>{{str index|</nowiki>''text''|''number''<nowiki>}}</nowiki> = Returns the ''number''-th character of ''text''.
  
Only supports a limited character set.  Returns an error on unknown characters.
+
Only supports a limited character set.  Returns an error on unknown characters. Returns &amp;#32; for a blank space.
  
 
=== Examples ===
 
=== Examples ===
 
* {{tlp|str index|0123456789ABCDEF|15}} → {{str index|0123456789ABCDEF|15}}
 
* {{tlp|str index|0123456789ABCDEF|15}} → {{str index|0123456789ABCDEF|15}}
 
* {{tlp|str index|0123456789ABCDEF|18}} → {{str index|0123456789ABCDEF|18}}
 
* {{tlp|str index|0123456789ABCDEF|18}} → {{str index|0123456789ABCDEF|18}}
 +
* <code><nowiki>{{str len|{{str index|a b|2}}}}</nowiki></code> → {{str len|{{str index|a b|2}}}}
  
 
=== See also ===
 
=== See also ===

Revision as of 09:07, 10 July 2010

Usage

{{str index|text|number}} = Returns the number-th character of text.

Only supports a limited character set. Returns an error on unknown characters. Returns &#32; for a blank space.

Examples

  • {{str index|0123456789ABCDEF|15}}Character not recognized by string_index
  • {{str index|0123456789ABCDEF|18}}((str index)): String is not long enough.
  • {{str len|{{str index|a b|2}}}} → 129

See also