JavaScript is one of the easiest programming languages to learn. If you are confused on how to check if one string contains another substring in JavaScript, then you have come to the right place. There are many ways one can achieve the desired result, so let’s go through them one by one.
The most common method: string.indexOf()
The best way to find a substring from a string is to use the indexOf() function. If you noticed, the indexOf() method simply tests if the substring is present or not. If it is present, it will return the starting index of the substring; if not, it will return -1. We can use the behavior of the indexOf() method to find a substring. All we need to do is set a condition to check for the return value.
var programminglanguages = "C++, JavaScript, Ruby"; var newlanguage = "Python"; function findNewProgrammingLanguage(language) { if (programminglanguages.indexOf(language) >=0) { console.log(language + "is present"); } else { console.log(language + "is absent"); } } findNewProgrammingLanguage(newlanguage);
Next, we can use the RegExp.test() method to find a substring. This method returns a boolean and hence is much easier to use. In comparison to the indexOf() method, it returns direct true or false results and can therefore be a good alternative.
var programminglanguages = "C++, JavaScript, Ruby"; var newlanguage = "Python"; function findNewProgrammingLanguage(language) { var programmingReg = new RegExp(newlanguage); if (programmingReg.test(programminglanguages)) { console.log(language + "is present"); } else { console.log(language + "is absent"); } } findNewProgrammingLanguage(newlanguage);
While RegExp.test() is a great method to use, special characters can be a problem.
The last method is String.contains(). It directly checks if the substring is present or not and returns a boolean value. It is available after ECMAScript 6, and hence needs to be used with caution.
Do you have anything to add to the tutorial? If yes, don’t forget to comment below and let us know.
You can also check on our website for videos about JavaScript. Below are some examples:
You can also follow some of our broadcasters who program in JavaScript as below:
Another cool way to find out interesting things about JavaScript is to access our project page!
We’re thrilled to announce an exciting opportunity for you to win not one but two…
Acquiring practical skills is crucial for career advancement and personal growth. Education Ecosystem stands out…
Artificial Intelligence (AI) has been making significant strides in various industries, and the software development…
Another week to bring you the top yield platforms for three of the most prominent…
If you hold a large volume of LEDU tokens above 1 million units and wish…
It’s another week and like always we have to explore the top yield platforms for…
View Comments
Understanding string manipulation is important if you want to improve as a programmer. This tutorial explains simple stuff such as finding a string with another. Hope to know more stuff like this as it will sharpen by skill as a programmer! Oh yes, I love JavaScript!