Template:Str sub find
File:Lua-logo-nolabel.svg|30px|alt=Lua logo|link=Wikipedia:Lua | Uses Lua:
|
The Template:str_sub_find searches for a substring in a string at the given offset.
Usage
{{str sub find|<string1>|<string2>|<offset>}}
It returns 1, if string2 is found in string1 at the given offset, otherwise it will return empty string. This makes the result easy usable in Help:Extension:ParserFunctions like {{#if:|}}
.
Offset is zero-based and can be omitted if zero.
Examples
- {{#if: {{str sub find|abcdef|abc}} | Substring is found | Substring is not found }} → Substring is found
- {{#if: {{str sub find|abcdef|abc|2}} | Substring is found | Substring is not found }} → Substring is not found
- {{#if: {{str sub find|abcdef|def}} | Substring is found | Substring is not found }} → Substring is not found
- {{#if: {{str sub find|abcdef|def|3}} | Substring is found | Substring is not found }} → Substring is found
See also
Script error: The function "navbox" does not exist.
The above documentation is transcluded from Template:Str sub find/doc. (edit | history) Editors can experiment in this template's sandbox (create | mirror) and testcases (create) pages. Please add categories to the /doc subpage. Subpages of this template. |