Skip to content

Instantly share code, notes, and snippets.

@mfilipelino
Last active October 7, 2015 17:57
Show Gist options
  • Save mfilipelino/5beb62dca705907d5eb9 to your computer and use it in GitHub Desktop.
Save mfilipelino/5beb62dca705907d5eb9 to your computer and use it in GitHub Desktop.
#python #re #util
"""
Digit: d
Word: w
"""
VERSION = r'\d{2}(\.\d{2}){3}([-\.]\w+)?' # 'dd.dd.dd.dd' or 'dd.dd.dd.dd-d' or dd.dd.dd.dd-w'
CPF = r'\d{3}\.\d{3}\.\d{3}-\d{2}' # 'ddd.ddd.ddd-dd'
TELEFONE = r'\d{3} \d{4}-\d{4}' # 'dd dddd-dddd
HORA = r'[012]\d(:[0-5]\d){2}' # 'd[0-2]d:d[0-5]d:dd'
FILE_LOG = r'^\w+\.log$' # file.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment