JavaScript String indexOf(): Find Occurrence Position in String

JavaScript String indexOf(): Find Occurrence Position in String

JavaScript find the first occurrence of a character position in the string; This tutorial will guide you on how to find first occurrence of a character position in the string using the javascript string indexOf() method.

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

JavaScript String indexOf() Method

The javascript string method indexOf() is used to find the first occurrence of a character position in 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 the 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("de");
document.write('Result of the above code is:-' + res);

Result of the above code is:-6

Ex2:-

Now 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

Recommended JavaScript Tutorials

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *