Count the number of occurrences of a character in a string in Javascript

后端 未结 30 2500
礼貌的吻别
礼貌的吻别 2020-11-22 02:33

I need to count the number of occurrences of a character in a string.

For example, suppose my string contains:

var mainStr = \"str1,str2,str3,str4\";         


        
30条回答
  •  你的背包
    2020-11-22 03:05

    Easiest way i found out...

    Example-

    str = 'mississippi';
    
    function find_occurences(str, char_to_count){
        return str.split(char_to_count).length - 1;
    }
    
    find_occurences(str, 'i') //outputs 4
    

提交回复
热议问题