I want to convert an input string to Title Case.
So, if I have an input string
Name: MR. M.A.D KARIM
I want to produce the following output string
Name: M.A.D Karim
And if I have an input string
Address: 12/A, ROOM NO-B 13
I want to produce
Address: 12/A, Room No-B 13
I want my output string to have a capital letter after any whitespace character, as well as after any of the following characters: .
, -
, /
.
My current solution is
ucwords(strtolower($string));
But it leaves characters after .
, -
and /
lowercased, while I want them to be uppercased.
This should work for you:
Input:
Output: