w3resource

Python: Check that a string contains only a certain set of characters

Python Regular Expression: Exercise-1 with Solution

Write a Python program to check that a string contains only a certain set of characters (in this case a-z, A-Z and 0-9).

Sample Solution:

Python Code:

import re
def is_allowed_specific_char(string):
    charRe = re.compile(r'[^a-zA-Z0-9]')
    string = charRe.search(string)
    return not bool(string)

print(is_allowed_specific_char("ABCDEFabcdef123450")) 
print(is_allowed_specific_char("*&%@#!}{"))

Sample Output:

True                                                                                                          
False 

Pictorial Presentation:

Python: Regular Expression - Check that a string contains only a certain set of characters.
Python: Regular Expression - Check that a string contains only a certain set of characters.

Flowchart:

Flowchart: Regular Expression - Check that a string contains only a certain set of characters.

Python Code Editor:

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

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

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.