str为某字符串
char为某字符
//得到字符串含有某个字符的个数
function getCharCount(str,char){
var regex = new RegExp(char, ‘g‘); // 使用g表示整个字符串都要匹配
var result = str.match(regex); //match方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。
var count=!result ? 0 : result.length;
return count;
}
var count=getStrCount("abc,cde",‘c‘);
count=2
Match()方法的语法
https://www.w3school.com.cn/jsref/jsref_match.asp
转自:https://www.cnblogs.com/isxiaoming/p/12551473.html