Learnerslesson
   JAVA   
  SPRING  
  SPRINGBOOT  
 HIBERNATE 
  HADOOP  
   HIVE   
   ALGORITHMS   
   PYTHON   
   GO   
   KOTLIN   
   C#   
   RUBY   
   C++   




indexOf() FUNCTION


indexOf() Function


The indexOf() Function is used to find a substring from the String. It gives us the position of the substring.


Example :



fun main() {

    var x = "Hello Beautiful World"
    var y = x.indexOf("Beautiful")
        
    println("The substring is located at the position "+y)
}


Output :



 The substring is located at the position 6

In the above code, we have declared a String 'Hello Beautiful World' and assigned it to a variable 'x'.


x = "Hello Beautiful World"

java_Collections

And we would be searching the substring 'Beautiful', from the String, 'Hello Beautiful World'.


So, we have used the 'indexOf()' Function to find the substring 'Beautiful'.


var y = x.indexOf("Beautiful")

And what 'indexOf()' Function does is, goes to the String 'Hello Beautiful World' and searches for the position of the substring 'Beautiful'.


java_Collections

And finds the substring 'Beautiful' in the 6th position. And the position (i.e. '6') is stored in variable 'y'.


java_Collections

And thus prints the position.


println("The substring is located at the position "+y)

Output :



 The substring is located at the position 6

Now, let us say you have the below String,


"The Beautiful world is Beautiful indeed"

And you have to search for the substring 'Care'.


Off course the substring 'Care' is not present in the String, "The Beautiful world is Beautiful indeed".


Example :



fun main() {

    var x = "The Beautiful world is Beautiful indeed"
    var y = x.indexOf("Care")
        
    println("The substring is located at the position "+y)
}  


Output :



 The substring is located at the position -1

So, if you see the above output, it says '-1'.


Little Weird! Right?


Well! '-1' is returned because the substring 'Care' is not present in the String, "The Beautiful world is Beautiful indeed".


Just remember, if a substring is not found, '-1' is returned.