Skip to content

Instantly share code, notes, and snippets.

@alejio
Last active August 29, 2015 14:20
Show Gist options
  • Save alejio/b00464c5ec48d0032a8a to your computer and use it in GitHub Desktop.
Save alejio/b00464c5ec48d0032a8a to your computer and use it in GitHub Desktop.
Regex stuff
#Reject entries containing non-alphanumeric chars
if re.match('^[a-zA-Z0-9_]+$', test1):
#do stuff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment