Difference between revisions of "IndexOf"

From Catglobe Wiki
Jump to: navigation, search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:

+
{{HelpFiles}}
  
==== indexOf ====
+
==== indexOf ====
  
 
Returns a 0-based index of the first occurrence of a string in another string. Returns empty if there are no occurrences found.  
 
Returns a 0-based index of the first occurrence of a string in another string. Returns empty if there are no occurrences found.  
Line 21: Line 21:
 
'''Example'''  
 
'''Example'''  
  
string 1 = "is";  
+
''string s1 = "is"; ''
  
string s2 = "catglobe is tHe beSt";  
+
''string s2 = "catglobe is tHe beSt"; ''
  
number result =indexOf(s1, s2);  
+
''number result =indexOf(s1, s2); ''
  
print(result);  
+
''print(result); ''
  
//9  
+
''//9 ''
  
 
'''Availability'''  
 
'''Availability'''  
  
Version 5.2
+
Version 5.2  
  
 
[[Category:String_Functions]]
 
[[Category:String_Functions]]

Latest revision as of 12:40, 22 December 2011


indexOf

Returns a 0-based index of the first occurrence of a string in another string. Returns empty if there are no occurrences found.

Syntax

indexOf(stringToSearchFor, stringToSearchIn)

Arguments

stringToSearchFor: is a string expression.

stringToSearchIn: is a string expression.

Return type

number

Example

string s1 = "is";

string s2 = "catglobe is tHe beSt";

number result =indexOf(s1, s2);

print(result);

//9

Availability

Version 5.2