Python: Find the occurrence and position of the substrings within a string
22. Substring Occurrence and Position
Write a Python program to find the occurrence and position of substrings within a string.
Sample Solution:
Python Code:
import re
text = 'Python exercises, PHP exercises, C# exercises'
pattern = 'exercises'
for match in re.finditer(pattern, text):
s = match.start()
e = match.end()
print('Found "%s" at %d:%d' % (text[s:e], s, e))
Sample Output:
Found "exercises" at 7:16 Found "exercises" at 22:31 Found "exercises" at 36:45
Pictorial Presentation:
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Python program to find each occurrence of a substring in a string and output its starting index.
- Write a Python script to search for a pattern in a string and then list all positions where it occurs.
- Write a Python program to iterate over a string, record the positions of a given substring, and then print a summary.
- Write a Python program to count and print the starting positions of every occurrence of a specified substring in a text.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to find the substrings within a string.
Next: Write a Python program to replace whitespaces with an underscore and vice versa.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.