“javascript count ocdulars буквы в строке” Ответ

javascript count ocdulars буквы в строке

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

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

Count Acdularces of Marcy в 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

Как сосчитать конкретные буквы в строке 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

Ответы похожие на “javascript count ocdulars буквы в строке”

Вопросы похожие на “javascript count ocdulars буквы в строке”

Больше похожих ответов на “javascript count ocdulars буквы в строке” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования