How do I show only numbers in a string?
I keep getting a string with a vertical tab, new line, and white space. But I don't know how to get rid of it. 🙁
I tried this, but it didn't work either.
$value = rtrim($str, "\t\n\x0B");
Is there a function that will only show numbers?
~Ron