English

Learn JavaScript – How To Check if One String Contains Another Substring?

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()

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);

RegExp.test() method

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.

String.contains()

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:

  • Functional JavaScript (part 10) – JavaScript
  • JSbroadcast.com – Hacking in MEAN Stack (part 32) – JavaScript

You can also follow some of our broadcasters who program in JavaScript as below:

 TGOlson

 agjs

Another cool way to find out interesting things about JavaScript is to access our project page!

Dr. Michael J. Garbade

I, Dr. Michael J. Garbade is the co-founder of the Education Ecosystem (aka LiveEdu), ex-Amazon, GE, Rebate Networks, Y-combinator. Python, Django, and DevOps Engineer. Serial Entrepreneur. Experienced in raising venture funding. I speak English and German as mother tongues. I have a Masters in Business Administration and Physics, and a Ph.D. in Venture Capital Financing. Currently, I am the Project Lead on the community project -Nationalcoronalvirus Hotline I write subject matter expert technical and business articles in leading blogs like Opensource.com, Dzone.com, Cybrary, Businessinsider, Entrepreneur.com, TechinAsia, Coindesk, and Cointelegraph. I am a frequent speaker and panelist at tech and blockchain conferences around the globe. I serve as a start-up mentor at Axel Springer Accelerator, NY Edtech Accelerator, Seedstars, and Learnlaunch Accelerator. I love hackathons and often serve as a technical judge on hackathon panels.

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!

Recent Posts

Highest Stable Coin Yields – (W16 – 2024)

Another week to bring you the top yield platforms for three of the most prominent…

2 weeks ago

LEDU Token OTC Trading

If you hold a large volume of LEDU tokens above 1 million units and wish…

1 month ago

Highest Stable Coin Yields – (W12 – 2024)

It’s another week and like always we have to explore the top yield platforms for…

1 month ago

Binance Auto Invest – the Best Innovation in Crypto since Sliced Bread

At a time where we’re constantly seeking tools and strategies to simplify our crypto investments,…

1 month ago

Highest Stable Coin Yields – March 2024

As we kick off another week, it's time to explore the top yield platforms for…

2 months ago

Education Ecosystem Featured on Business Insider

We're excited to share that Education Ecosystem was recently featured in an article on Business…

2 months ago