How to find all occurrences of substring in a string ignoring the case in Python

1 Answer

0 votes
s = "abc asd abc xyabcqq abc"
substring = "abc"

tmp = s.lower()

count = tmp.count(substring.lower())

print(count)
      

'''
run

4

'''

 



answered Apr 9, 2019 by avibootz

Related questions

...