I have a requirement where every word in a string should be converted to title case but my exact convertion is as follows :
My present code is as follows :
row[col.ColumnName] = CultureInfo.InvariantCulture.TextInfo.ToTitleCase(Convert.ToString(row[col.ColumnName]).ToLower());
which converts "war and peace" to "War And Peace" but my requirement was "War and Peace" where.
At present ToTitleCase function was not helpfull.
Please suggest any possible solution for me.
Thanks.
I think the easiest thing to do would be to write a function to scan the string passed for connecting words (and, or, of ), and capitalize everything else. I am not aware of anything in .net to handle it otherwise.
Wrote this real quick, it is dirty but works.
I received "War and Peace" when I passed war and peace.
Hope that helps.