摘要: ####使用RegExp ``` function getCharCount(str, char) { //str父字符串,char子字符串 const regexp = new RegExp(char, 'g') //'g'表示需要匹配整个字符串 const result = str.match( 阅读全文
posted @ 2021-09-07 11:55 卿六 阅读(509) 评论(0) 推荐(0) 编辑