js如何获取字符串中每个字符出现的次数

2024年07月20日 建站教程

如何通过js获取当前数据中的相同个数(字母/数字/字符/中文字等),下面web建站小编给大家详细介绍一下实现代码!

实现代码如下:

function counts(str) {
  var uchars = {};
  str.replace(/\S/g, function(l){uchars[l] = (isNaN(uchars[l]) ? 1 : uchars[l] + 1);});
  return uchars;
}

调用方法:

var str = 'web建站,I am the web site editor'
console.log('输出结果:', counts(str))
输出结果:
I: 1
a: 1
b: 2
d: 1
e: 5
h: 1
i: 2
m: 1
o: 1
r: 1
s: 1
t: 3
w: 2
建: 1
站: 1
,: 1

本文链接:http://so.lmcjl.com/news/8843/

展开阅读全文
相关内容