Example 1: Simple Phone Number Validation
`^(\d{3})\s?\-?(\d{3})\s?\-?(\d{4})$`
This regex pattern will match most phone numbers in the US format.
Learn more about US phone number patternsExample 2: International Phone Number Validation
`^\+?\1?\d{1,4}\s?\-?\d{1,4}\s?\-?\d{1,4}$`
This regex pattern will match most international phone numbers.
Learn more about international phone number patterns