Core Function IndexOf
From Sputnik Wiki
(Difference between revisions)
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
− | Reports the index of the first occurrence of the specified character in the current string. Parameters specify the starting search position in the current string and the type of search to use for the specified string | + | Reports the index of the first occurrence of the specified character in the current string. |
+ | |||
+ | Parameters specify the starting search position in the current string and the type of search to use for the specified string. | ||
=== expression === | === expression === |
Revision as of 22:28, 20 August 2013
IndexOf( <expression>, <needle>, <pos>, <case>, <count> )
Contents |
Description
Reports the index of the first occurrence of the specified character in the current string.
Parameters specify the starting search position in the current string and the type of search to use for the specified string.
expression
The string to use.
needle
The character to find (If you pass a string here the first character of it will be used as the needle).
pos
Optional; Position to start the search from within the expression.
Default: 0
case
Optional; Case sensitive option
false = Case sensitive search
true = Case insensitive search
Default: false
count
Optional; The amount of characters to check before quitting the search
Return Value
Success: Returns position of the found character in the string.
Failure: Returns -1.
Remarks
None.
Example
Case sensitive
println( IndexOf("The quick brown FoX", "X") );
Case insensitive
println( IndexOf("The quick brown FoX", "x", 0, true) );