Stripping a phone number of its parenthesis, spaces, and hyphens in PHP?
I have a phone number stored in $phone
, it looks like this: (555) 555-5555
. I want it to look like this: 5555555555
. How do I take the string and strip it of hyphens, spaces, and parenthesis?
PHP
- asked 8 years ago
- Gul Hafiz
2Answer
With a regexp. Specifically, use the preg_replace
function:
$phone = preg_replace('/\D+/', '', $phone);
- answered 8 years ago
- Community wiki
Your Answer