Ejemplo: JavaScript cuenta ocurrencias en cadena
function countOccurences(string, word) {
return string.split(word).length - 1;
}
var text="We went down to the stall, then down to the river.";
var count=countOccurences(text,"down"); // 2
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)