Count number of occurrences of a given substring in a string

后端 未结 30 1682
不思量自难忘°
不思量自难忘° 2020-11-22 13:58

How can I count the number of times a given substring is present within a string in Python?

For example:

>>> \'foo bar foo\'.numberOfOccurre         


        
30条回答
  •  花落未央
    2020-11-22 14:38

    If you want to count all the sub-string (including overlapped) then use this method.

    import re
    def count_substring(string, sub_string):
        regex = '(?='+sub_string+')'
        # print(regex)
        return len(re.findall(regex,string))
    

提交回复
热议问题