字符串在另一个 JavaScript 中出现的次数


我们需要编写一个 JavaScript 函数,这个函数需要输入两个字符串,然后返回 str1 在 str2 中出现的次数。

示例

代码如下 −

const main = 'This is the is main is string';
const sub = 'is';
const countAppearances = (main, sub) => {
   const regex = new RegExp(sub, "g");
   let count = 0;
   main.replace(regex, (a, b) => {
      count++;
   });
   return count;
};
console.log(countAppearances(main, sub));

输出

控制台中的输出 −

4

更新日期: 14-Oct-2020

178 次浏览

开启 你的职业生涯

完成课程获得认证

开始
广告