Many variations of this question exist, and I tried a few generators, but I can't seem to find a regular expression that matches this. Say I have a phone number that looks like "345-324-3243 X039" I want to remove everything but the digits, the letter x and the plus sign (appears in international numbers).
Here is my current non-working regex and code:
$phone = "345-324-3243 X039";
preg_replace('[^\d|x|\+]', '', $phone);
I want it to come out to "3453243243X039" but instead I get "30234-2349".