“JavaScript Count Ocurrencia de carácter en cadena” 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

ocurrencias de conteo de JavaScript en la cadena

function countOccurences(string, word) {
   return string.split(word).length - 1;
}
var text="We went down to the stall, then down to the river."; 
var count=countOccurences(text,"down"); // 2
Grepper

JavaScript Count Ocurrencia de carácter en cadena

// String Prototype: myCount = myString.polycount("countThis")
String.prototype.polycount = function (criteria) {
  return this.split(criteria).length - 1 }
// Arrow Function (STR): myCount = strCount(myString, "countThis")
const strCount = (stack, find) => stack.split(find).length - 1
// Array Prototype: myCount = myArray.polycount("countThis")
Array.prototype.polycount = function (criteria) {
  return this.join("").split(criteria).length - 1 }
// Arrow Function (ARR): myCount = arrCount(myArray, "countThis")
const arrCount = (stack, find) => stack.join("").split(find).length - 1
Brian Patterson

JavaScript Count Instancias de carácter en una cadena

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

  for (var i = 0; i < sentence.length; i++) {
    if (sentence.charAt(i) === letter) {
      count += 1;
    }
  }
  return count;
}
Upset Unicorn

Respuestas similares a “JavaScript Count Ocurrencia de carácter en cadena”

Preguntas similares a “JavaScript Count Ocurrencia de carácter en cadena”

Más respuestas relacionadas con “JavaScript Count Ocurrencia de carácter en cadena” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código