I have a string, and I want to uppercase a letter on every next 5 letter. For example:
string input = "welcome to america";
and I want to have the output like the following:
welcOme tO ameRica
Please help!!!
I have a string, and I want to uppercase a letter on every next 5 letter. For example:
string input = "welcome to america";
and I want to have the output like the following:
welcOme tO ameRica
Please help!!!