标签:slice color mat tty abc regex match cdc ice
要从一段字符串中找出某个字母或者字符串出现的次数,很多人估计首先想到的是循环,但是下面这种方法是利用正则来快速匹配,比循环性能要高很多。
下面是使用正则来快速匹配字母次数:
var str = "abcafgbabcdcresdf";
var sliceStr = "a";
var regex = new RegExp(sliceStr, ‘g‘);
var result = str.match(regex);
console.log(result);//输出["a", "a", "a"]
var number = !result ? 0 : result.length;
console.log(number);//输出3
小数点不能操作
标签:slice color mat tty abc regex match cdc ice
原文地址:https://www.cnblogs.com/congtt/p/9767015.html