How to get the starting index for all occurrences of a substring in a string with Python

2 Answers

0 votes
s = 'abcdabcdefgabaab'
  
sub = 'ab'

lst = [] 

lst = [i for i in range(len(s)) if s.startswith(sub, i)] 
  
print(lst) 


        
'''
run:
 
[0, 4, 11, 14]
        
'''

 



answered Apr 30, 2020 by avibootz
0 votes
import re 

s = 'abcdabcdefgabaab'
  
sub = 'ab'

lst = [] 

lst = [i.start() for i in re.finditer(sub, s)]
  
print(lst) 


        
'''
run:
 
[0, 4, 11, 14]
        
'''

 



answered Apr 30, 2020 by avibootz
...