本文实例讲述了JS字符串统计操作。分享给大家供大家参考,具体如下:<!DOCTYPEhtmlPUBLIC"-/
本文实例讲述了JS字符串统计操作。分享给大家供大家参考,具体如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>JS字符串</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<script>
var str = "aaddaabbcdddefg";
console.log(str.charAt(7)); //b 没有返回空不是null
console.log(str.indexOf('p')); //1 没有返回-1
var obj = {};
for (var i = 0; i < str.length; i++) {
var v = str.charAt(i);
if (obj[v] && obj[v].value == v) {
obj[v].count++;
} else {
obj[v] = {};
obj[v].count = 1;
obj[v].value = v;
}
}
console.log(obj); //true
//obj = {a:object,b:object,c:object}
for (key in obj) {
document.write(obj[key].value + '=' + obj[key].count + ' '); // a=4 b=3 c=4 d=2 f=1 g=1 h=1
}
</script>
</body>
</html>
记录字符串中每一项,并且记录个数。
运行效果图如下:
PS:这里再为大家推荐2款非常方便的统计工具:
在线字数统计工具: http://tools.jb51.net/code/zishutongji
在线字符统计与编辑工具: http://tools.jb51.net/code/char_tongji
JS 字符串 统计操作 遍历 截取 输出 计算