show/hide this revision's text 2 added 5 characters in body

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])

show/hide this revision's text 1

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])