Hey Guys,
I have a string. I need to convert some alphabets to lower case.
For example - input string : CDCKPHC-AMBTEST, MDONE (M.D.)
Output string : Cdckphc-Ambtest, Mdone (M.D.)
The logic that can be used is if any alphabet comes after a space or a special character it needs to be in uppercase. Else all alphabets will be in lower case. Also the first alphabet has to be in uppercase always.
Thanks in advance.