Answers for "js string contains substring"

3

if str contains jquery

if (str.indexOf("Yes") >= 0)
  
  //case insensitive version
  if (str.toLowerCase().indexOf("yes") >= 0)
Posted by: Guest on July-01-2020
23

check for substring javascript

const string = "javascript";
const substring = "script";

console.log(string.includes(substring));  //true
Posted by: Guest on July-06-2020
8

angular string contains

const string = "foo";
const substring = "oo";

console.log(string.includes(substring));
Posted by: Guest on March-24-2020
29

javascript string contains substring

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
//use indexOf (it returns position of substring or -1 if not found)
Posted by: Guest on July-18-2019
1

javascript check if string contains at the begins with substring

var str = "Hello world, welcome to the universe.";

var n = str.startsWith("Hello");
Posted by: Guest on June-27-2021
6

string.contains javascript

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
Posted by: Guest on April-28-2020

Code answers related to "js string contains substring"

Code answers related to "Javascript"

Browse Popular Code Answers by Language