w3resource

Python: Match a string that contains only upper and lowercase letters, numbers, and underscores


14. Alphanumeric Underscore Only

Write a Python program to match a string that contains only upper and lowercase letters, numbers, and underscores.

Sample Solution:

Python Code:

import re
def text_match(text):
        patterns = '^[a-zA-Z0-9_]*$'
        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("Python_Exercises_1"))

Sample Output:

Not matched!                                                                                                  
Found a match!

Pictorial Presentation:

Python: Regular Expression - Match a string that contains only upper and lowercase letters, numbers, and underscores.
Python: Regular Expression - Match a string that contains only upper and lowercase letters, numbers, and underscores.

Flowchart:

Flowchart: Regular Expression - Match a string that contains only upper and lowercase letters, numbers, and underscores.

For more Practice: Solve these Related Problems:

  • Write a Python program to validate that a string contains only letters, digits, and underscores.
  • Write a Python script to filter a list of strings, keeping only those that match the pattern of alphanumerics and underscores.
  • Write a Python program to check if a string strictly adheres to a regex that permits only upper/lowercase letters, numbers, and underscores.
  • Write a Python program to replace any character not a letter, digit, or underscore with an empty string.

Go to:


Previous: Write a Python program that matches a word containing 'z', not start or end of the word.
Next: Write a Python program where a string will start with a specific number.

Python Code Editor:

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

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.