w3resource

Python: Matches a string that has an a followed by one or more b's

Python Regular Expression: Exercise-3 with Solution

Write a Python program that matches a string that has an a followed by one or more b's.

Sample Solution:

Python Code:

import re
def text_match(text):
        patterns = 'ab+?'
        if re.search(patterns,  text):
                return 'Found a match!'
        else:
                return('Not matched!')

print(text_match("ab"))
print(text_match("abc"))

Sample Output:

Found a match!                                                                                                
Found a match!

Pictorial Presentation:

Python: Regular Expression - Matches a string that has an a followed by one or more b's.
Python: Regular Expression - MMatches a string that has an a followed by one or more b's.

Flowchart:

Flowchart: Regular Expression - Matches a string that has an a followed by one or more b's.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program that matches a string that has an a followed by zero or more b's.
Next: Write a Python program that matches a string that has an a followed by zero or one 'b'.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

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-3.php