In this section, we are going to find the location of substring using the JavaScript method indexOf(). When this method is called from the string object, it returns the index of the position where the specified string first occurs in a string. If the particular string is not found then it will return -1. You can see in the given code, we have used the string.indexOf(substring,0) method where the parameters substring is the specified string and 0 is the index that will allow to start the search for the specified substring.
Here is the code:
| <html> <h2>Use of indexOf() method</h2> <script type="text/javascript"> var string = "Hello World"; var substring = "World"; var position= string.indexOf(substring,0); document.write("<b>The substring " + substring + " is at position </b>" + position); </script> </html> |
Output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: JavaScript indexOf substring
Post your Comment