Python: Matches a string that has an 'a' followed by anything, ending in 'b'
Python Regular Expression: Exercise-9 with Solution
Write a Python program that matches a string that has an 'a' followed by anything ending in 'b'.
Sample Solution:
Python Code:
import re
def text_match(text):
patterns = 'a.*?b$'
if re.search(patterns, text):
return 'Found a match!'
else:
return('Not matched!')
print(text_match("aabbbbd"))
print(text_match("aabAbbbc"))
print(text_match("accddbbjjjb"))
Sample Output:
Not matched! Not matched! Found a match!
Pictorial Presentation:
Flowchart:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to find sequences of one upper case letter followed by lower case letters.
Next: Write a Python program that matches a word at the beginning of a string.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/re/python-re-exercise-9.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics