“JavaScript Counting Octents of Letter en String” Código de respuesta

JavaScript Counting Octents of Letter en String

function count(str, find) {
    return (str.split(find)).length - 1;
}

count("Good", "o"); // 2
DenverCoder1

Cuente las ocurrencias de carácter en String JavaScript

var temp = "This is a string.";
var count = (temp.match(/is/g) || []).length;
console.log(count);

Output: 2

Explaination : The g in the regular expression (short for global) says to search the whole string rather than just find the first occurrence. This matches 'is' twice.
Ankur

Cómo contar letras específicas en la cadena JS

console.log(("str1,str2,str3,str4".match(/,/g) || []).length); //logs 3

console.log(("str1,str2,str3,str4".match(new RegExp("str", "g")) || []).length); //logs 4
Victorious Vicuña

Respuestas similares a “JavaScript Counting Octents of Letter en String”

Preguntas similares a “JavaScript Counting Octents of Letter en String”

Más respuestas relacionadas con “JavaScript Counting Octents of Letter en String” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código