indexOf: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 6: Line 6:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
indexOf(str, substr)
indexOf(str, substr)
</source>
</syntaxhighlight>
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
indexOf(str, substr, start)
indexOf(str, substr, start)
</source>
</syntaxhighlight>


|examples=
|examples=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: indexOf("this is a test", "is")]
[r: indexOf("this is a test", "is")]
</source>
</syntaxhighlight>
Returns 2.
Returns 2.


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: indexOf("this is a test", "is", 3)]
[r: indexOf("this is a test", "is", 3)]
</source>
</syntaxhighlight>
Returns 5.
Returns 5.


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: indexOf("this is a test", "x")]
[r: indexOf("this is a test", "x")]
</source>
</syntaxhighlight>
Returns -1.
Returns -1.
}}
}}
[[Category:String Function]]
[[Category:String Function]]

Latest revision as of 16:23, 15 March 2023

indexOf() Function

Introduced in version 1.3b48
Returns the index of a substring in the specified string. If the substring does not occur within the string then -1 is returned. If you do not specify the index to start at the search begins at the start of the string otherwise it will begin from the position you specify.

Usage

indexOf(str, substr)
indexOf(str, substr, start)

Examples

[r: indexOf("this is a test", "is")]

Returns 2.

[r: indexOf("this is a test", "is", 3)]

Returns 5.

[r: indexOf("this is a test", "x")]
Returns -1.