SyntaxFix
Write A Post
Hire A Developer
Questions
You could always use a list comprehension and check the results with all, it would be a little less resource intensive than using a regex: all([c in string.letters + string.digits + ["_", "-"] for c in mystring])
all([c in string.letters + string.digits + ["_", "-"] for c in mystring])