I have a string like this:
\" 23 PM\"
I would like to remove 23 so I\'m left with PM or (with space truncated) ju
23
PM
preg_replace("/[0-9]/", "", $string);