javascript count char in string code example
Example 1: count occurrences of character in 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.
Example 2: string methods javascript count number of words inside a string
<html>
<body>
<script>
function countWords(str) {
str = str.replace(/(^\s*)|(\s*$)/gi,"");
str = str.replace(/[ ]{2,}/gi," ");
str = str.replace(/\n /,"\n");
return str.split(' ').length;
}
document.write(countWords(" Tutorix is one of the best E-learning platforms"));
</script>
</body>
</html>
Example 3: how to count specific letters in string js
console.log(("str1,str2,str3,str4".match(/,/g) || []).length);
console.log(("str1,str2,str3,str4".match(new RegExp("str", "g")) || []).length);
Example 4: count value a to b character javascript
function count (string) {
var count = {};
string.split('').forEach(function(s) {
count[s] ? count[s]++ : count[s] = 1;
});
return count;
}
Example 5: javascript count character in string
var str = "Hello World!";
var n = str.length;