Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created April 18, 2018 12:34
Unicode en expresiones regulares. OrtizOL.
import re
patron = re.compile('\d+')
print(patron.match('987'))
print(patron.match('\u0661\u0662\u0663'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment