El método Lodash _.strContains() verifica si la string dada contiene la string buscada o no y devuelve el valor booleano correspondiente.
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 devuelto: este método devuelve un valor booleano.
Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones lodash.js. La biblioteca de contribuciones de Lodash.js se puede instalar usando npm install lodash-contrib –save .
Ejemplo 1:
Javascript
// Defining lodash contrib variable var _ = require('lodash-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 lodash contrib variable var _ = require('lodash-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 lodash contrib variable var _ = require('lodash-contrib'); var bool = _.strContains("abc", "a"); console.log("The String contains the " + "searched String : ", bool);
Producción:
The String contains the searched String : true
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA