Answers for "javascript check string contains a character"

3

javascript string contains character

var email = "[email protected]";
if(email.includes("@")){
  console.log("Email is valid");
}
else{
  console.log("Email is not valid");
}
// includes return boolean, if your string found => true else => false
Posted by: Guest on June-19-2021
6

js check if string contains character

"FooBar".includes("oo"); // true

"FooBar".includes("foo"); // false

"FooBar".includes("oo", 2); // false
Posted by: Guest on June-12-2020
0

js check if string contains character

if (your_string.indexOf('hello') > -1)
{
  alert("hello found inside your_string");
}
Posted by: Guest on June-12-2020
0

js contain character

bigstring.includes("string") // return true or false
Posted by: Guest on October-12-2021

Code answers related to "javascript check string contains a character"

Code answers related to "Javascript"

Browse Popular Code Answers by Language