w3resource

Python: Matches a word at the beginning of a string


10. Word at Start

Write a Python program that matches a word at the beginning of a string.

Sample Solution:

Python Code:

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

print(text_match("The quick brown fox jumps over the lazy dog."))
print(text_match(" The quick brown fox jumps over the lazy dog."))

Sample Output:

Found a match!                                                                                                
Not matched!

Pictorial Presentation:

Python: Regular Expression - Matches a word at the beginning of a string.
Python: Regular Expression - Matches a word at the beginning of a string.

Flowchart:

Flowchart: Regular Expression - Matches a word at the beginning of a string.

For more Practice: Solve these Related Problems:

  • Write a Python program to check if a given word appears at the very beginning of a string.
  • Write a Python script to extract the first word of a sentence and verify it matches a specified keyword.
  • Write a Python program to match and print the starting word of a string using regex.
  • Write a Python program to test if a string begins with a specific word and then output the entire string if true.

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 anything, ending in 'b'.
Next: Write a Python program that matches a word at end of string, with optional punctuation.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.