Bienvenido a proyecto on line, en este sitio hallarás la respuesta a lo que buscas.
Ejemplo 1: comprobar la subcadena de JavaScript
const string ="javascript";const substring ="script";console.log(string.includes(substring));//true
Ejemplo 2: javascript string contiene
var string ="foo",
substring ="oo";console.log(string.includes(substring));
Ejemplo 3: javascript comprueba si el carácter existe en string
// With ES6 MDN docs .includes()"FooBar".includes("oo");// true"FooBar".includes("foo");// false"FooBar".includes("oo",2);// false (2 is the start position for the search)// E: Not suported by IE - instead you can use the Tilde opperator ~ (Bitwise NOT) with .indexOf()~"FooBar".indexOf("oo");// -2~"FooBar".indexOf("foo");// 0~"FooBar".indexOf("oo",2);// 0 (parameter 2 is the start position for the search)// Used with a number, the Tilde operator effective does ~N => -(N+1). Use it with double negation !! (Logical NOT) to convert the numbers in bools:!!~"FooBar".indexOf("oo");// true!!~"FooBar".indexOf("foo");// false!!~"FooBar".indexOf("oo",2);// false
Ejemplo 4: javascript contiene subcadena
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)
Ejemplo 5: js comprobar si string contiene carácter
if(your_string.indexOf('hello')>-1)alert("hello found inside your_string");
Te mostramos las comentarios y valoraciones de los lectores
Si te gustó nuestro trabajo, tienes el poder dejar un escrito acerca de qué te ha gustado de esta sección.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)