Ejemplo 1: búsqueda de cadenas de JavaScript que no distingue entre mayúsculas y minúsculas
function stringContainsCaseInsensitive(search, subject){
return subject.toLowerCase().indexOf(search.toLowerCase()) !== -1;
}
stringContainsCaseInsensitive("red","We painted the room red.");//true
Ejemplo 2: expresiones regulares que no distinguen entre mayúsculas y minúsculas de JavaScript
// It's the 'i' flag at the end of the expression.
/hello world/.test('Hello World'); // False
/hello world/i.test('Hello World'); // True
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)