Created
June 15, 2016 21:30
-
-
Save gkthiruvathukal/fd2acab1bd6b1f5d58a45f0ed45d1696 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| pattern = r"\d+" | |
| import re | |
| regex = re.compile(pattern) | |
| regex.match("George") | |
| regex.match("35") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment