I have a string like this:
" 23 PM"
I would like to remove 23 so I'm left with PM or (with space truncated) just PM.
Any suggestions?
Needs to be in PHP
|
|
|||||||||
|
|
Can do with
This would remove any number and spaces from the left side of the string. If you need it for both sides, you can use |
|||
preg_replace("/[0-9]/", "", $string);
|
|||||||||||||
|
|
Can also use
which would replace any number 0-9 and the space from the string, regardless of position. |
|||||
|
|
If you just want the last two characters of the string, use substr with a negative start:
|
|||||
|
|
|||||||||||
|
|
Regex
|
||||