Answers for "check if substring in string typescript"

8

check if substring in string typescript

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

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

javascript 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
2

check if substring in string typescript

var string = "foo";
var substring = "oo";

console.log(string.indexOf(substring) !== -1);
Posted by: Guest on March-24-2020

Code answers related to "check if substring in string typescript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language