“JavaScript Count Occurrences of Letter in String” Réponses codées

JavaScript Count Occurrences of Letter in String

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

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

compter les occurrences de caractère en javascript de chaîne

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

Comment compter les lettres spécifiques dans la chaîne 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

Réponses similaires à “JavaScript Count Occurrences of Letter in String”

Questions similaires à “JavaScript Count Occurrences of Letter in String”

Plus de réponses similaires à “JavaScript Count Occurrences of Letter in String” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code