如何通过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
上面是“js如何获取字符串中每个字符出现的次数”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3096.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!