I need to know how I can replace the last "s" from a string with ""
Let's say I have a string like testers and the output should be tester. It should just replace the last "s" and not every "s" in a string how can I do that in PHP?
|
|||||||||||||
|
|
Update: Ok it is also possible without regular expressions using
(Which is the same as Gordon proposed as I just noticed.) All answers so far remove the last character of a word. However if you really want to replace the last occurrence of a character, you can use
|
|||||||||||||||
|
|
Your question is somewhat unclear whether you want to remove the This function removes the last occurence of
If your intention is to inflect, e.g singularize/pluralize words, then have a look at this simple inflector class to know which route to take. |
|||||||
|
See rtrim() |
|||||||||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
your's? Would you want that to be converted as well? – Anthony Forloney Mar 28 '10 at 21:26