Answers for "how to find how many specific characters in string js"

1

how to count specific letters in string 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
Posted by: Guest on September-08-2020
-1

Javascript count instances of character in a string

function countInstancesOf(letter, sentence) {
  var count = 0;

  for (var i = 0; i < sentence.length; i++) {
    if (sentence.charAt(i) === letter) {
      count += 1;
    }
  }
  return count;
}
Posted by: Guest on June-20-2021

Code answers related to "how to find how many specific characters in string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language