La comprobación del método _.strContains()
Sintaxis:
_.strContains( string, searched_str);
Parámetros: este método acepta dos parámetros, como se mencionó anteriormente y se describe a continuación.
- String: este método toma la string en la que se buscará la string de búsqueda.
- Searched_str: este método toma una string para buscar.
Valor de retorno: este método r
Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones underscore.js.
La biblioteca de contribución underscore.js se puede instalar mediante npm install underscore-contrib –save.
Ejemplo 1:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var bool = _.strContains("GeeksforGeeks","Geeks"); console.log("The String contains the searched String : ",bool);
Producción:
The String contains the searched String : true
Ejemplo 2:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var bool = _.strContains("abc","d"); console.log("The String contains the searched String : ",bool);
Producción:
The String contains the searched String : false
Ejemplo 3:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var bool = _.strContains("abc","a"); console.log("The String contains the searched String : ",bool);
Producción:
The String contains the searched String : true