python-regexHow to match a phone number in Python regex?
The following regex can be used to match a phone number in Python:
\d{3}-\d{3}-\d{4}
This regex will match a phone number in the format of 123-456-7890
. The \d
part of the regex stands for a digit (0-9), and the {3}
and {4}
indicate that the preceding digit should appear 3 and 4 times respectively.
Code explanation
\d
: Matches any digit (0-9){3}
: Indicates that the preceding digit should appear 3 times{4}
: Indicates that the preceding digit should appear 4 times
Helpful links
More of Python Regex
- How to match whitespace in Python regex?
- How to replace in a file using Python regex?
- How to replace a certain group using Python regex?
- How to regex match excluding a word in Python?
- How to match one or more occurence in Python regex?
- How to use word boundaries in Python Regex?
- How to ignore case in Python regex?
- How to match a year with Python Regex?
- How to match the end of a line with regex in Python?
- How to perform a zero length match with Python Regex?
See more codes...