I have strings from a source code and its like;
"REAL MADRİD - BARCELONA"
"VİLLAREAL - IDIONA"
"FENERBAHÇE - BEŞİKTAŞ IŞ"
etc.. etc.. etc..
I want to convert this string totally lowercase and uppercase first character of each word. (like ucwords). But i have a problem with İI and other utf-8 characters when using ucwords function.
I want exactly output for this strings like;
"Real Madrid - Barcelona"
"Villareal - Idıona"
"Fenerbahçe - Beşiktaş Iş"
What can i try? Thanks.