Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Find All Occurrences of a Substring in a String in Python

import re 
 
# defining string  
str1 = "This dress looks good; you have good taste in clothes."
 
#defining substring 
substr = "good"
 
print("The original string is: " + str1) 
 
print("The substring to find: " + substr) 
 
result = [_.start() for _ in re.finditer(substr, str1)] 
 
print("The start indices of the substrings are : " + str(result))

# Output - 
# The original string is: This dress looks good; you have good taste in clothes.
# The substring to find: good
# The start indices of the substrings are : [17, 34]
Source by www.delftstack.com #
 
PREVIOUS NEXT
Tagged: #Find #All #Occurrences #Substring #String #Python
ADD COMMENT
Topic
Name
6+6 =