以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- js如何将字符串进行拆解,然后统计字符串的个数 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=185667) |
-- 作者:cnsjroom -- 发布时间:2023/3/8 18:11:00 -- js如何将字符串进行拆解,然后统计字符串的个数 let a = 21324、123、121 function count(o){ var t = typeof o; if(t == \'string\'){ return o.length; }else if(t == \'object\'){ var n = 0; for(var i in o){ n++; } return n; } return false; }
console.log(count(a)); 得到的是13 有没有办法补正一下 按照、号进行数据的统计 输出结果为3呢?
|
-- 作者:SbFox -- 发布时间:2023/3/8 18:22:00 -- if(t == \'string\'){ var n=o.split(","); return n.length; |
-- 作者:sunsenfeng -- 发布时间:2023/3/9 16:45:00 -- 应该用"、"作为分割符 var n=o.split("、");
|