JavaScript | String indexOf() Method

javascript find occurrence of character in string. This tutorial explains to you how you can find the character in a given string using the javascript string indexOf() method.

In this tutorial, you also learn javascript find the occurrence of the character in the string.

JavaScript: String indexOf() Method

Definition:- The javascript string method indexOf(), which is used to find the first occurrence of a specified value in a given string.

Note:- This string method returns -1 if the value to search is not found in the given string.

Syntax:

The basic syntax of js string indexOf() method is:

str.indexOf( search_value, start)

Here,

  • Str:- It’s a given string
  • search_value:- This is a required parameter. String to search in a given string
  • start:- This is an optional parameter. Where to start the search in a given string

Ex1:

Let’s take first example of indexOf() method in javascript. Let you have one string like “Hello developers, welcome to the javascript tutorial.”. In this string, you want to find the first “de” character. Let’s see the below example:

var string = "Hello developers, welcome to the javascript tutorial.";
var res = string.indexOf("ve");
document.write('Result of the above code is:-' + res);

Result of the above code is:-8

Ex2:

Now we take a second example with a specific position. Let you have one string like above. And you want to find string or characters in a given string with a specific position. Let’s see the below-given example:

var string = "Hello javascript developers, welcome to the javascript tutorial.";
var res = string.indexOf("javascript", 10);
document.write('Result of the above code is:-' + res);

Result of the above code is:-44

#javascript #programming

JavaScript | String indexOf() Method
4.10 GEEK