summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a573.py
blob: a07ff11fb70120e4e9a89b11556dd3388254aabe (plain)
1
2
3
4
5
import re
def is_allowed_specific_char(string):
    get_char = re.compile(r'[^a-zA-Z0-9.]')
    string = get_char.search(string)
    return not bool(string)