Paola, miembro de nuestro equipo de trabajo, nos ha hecho el favor de crear este post ya que conoce perfectamente este tema.
Ejemplo 1: js string buscar
var str ="This is a test sentence";var hasTest = str.includes("test");if(hasTest ==true)//do a thing
Ejemplo 2: buscar dentro de un string javascript
varstring="Hello world!";var n =string.search("w");//now n equals 6
Ejemplo 3: búsqueda de funciones en javascript array
// function to search array using for loopfunctionfindInArray(ar, val)for(var i =0,len = ar.length; i < len; i++)if( ar[i]=== val )// strict equality testreturn i;return-1;// example arrayvar ar =['Rudi','Morie','Halo','Miki','Mittens','Pumpkin'];// test the function alert(findInArray(ar,'Rudi'));// 0 (found at first element)alert(findInArray(ar,'Coco'));// -1 (not found)
Ejemplo 4: búsqueda en javascript
var str ="Please locate where 'locate' occurs!";var ind1 = str.indexOf("locate");// return location of first value which foundedvar ind2 = str.lastIndexOf("locate");// return location of last value which foundedvar ind3 = str.indexOf("locate",15);// start search from location 15 and then take first value which foundedvar ind4 = str.search("locate");//The search() method cannot take a second start position argument. //The indexOf() method cannot take powerful search values (regular expressions).
document.write("
"+"Length of string:", len);
document.write("
"+"indexOf:", ind1);
document.write("
"+"index of last:", ind2);
document.write("
"+"indexOf with start point:", ind3);
document.write("
"+"search:", ind4);
Ejemplo 5: función de búsqueda en javascript
find arrayfunction
valoraciones y reseñas
Si te gusta el proyecto, tienes el poder dejar un enunciado acerca de qué te ha gustado de esta crónica.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)