查找字母e出现的次数:
let str = "hello everyone";
如题,我目前想到的方法有:
使用split方法let num = str.split('e').length -1; num ==> 4
let num = str.split('e').length -1; num ==> 4
使用match方法(全局检索)let reg = /e/g; let num = str.match(reg).length; num ==> 4
let reg = /e/g; let num = str.match(reg).length; num ==> 4
还有其他方法吗?
米脂
函数式编程
尚方宝剑之说
慕田峪7331174
相关分类