Created
April 18, 2018 12:34
-
-
Save Fhernd/f152e78f5f32e52b56b68e2bf042e58b to your computer and use it in GitHub Desktop.
Unicode en expresiones regulares. OrtizOL.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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