Is there a string function that will strip all Numeric characters from a string. I have found functions that strip all NON numeric characters, but not the other way.
If the string is: brian123
i want it to return brian
Thanks
Have you tried a regexp?
echo preg_replace('/[0-9]/','','brian123');
A forum, a FAQ, what else do you need?