Advertisement
aaronvan

CamelCase

May 30th, 2018
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.54 KB | None | 0 0
  1. namespace CamelCase
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             Console.WriteLine(CamelCase(" hello to camel case"));
  8.             Console.ReadKey();
  9.         }
  10.  
  11.         public static string CamelCase(string str)
  12.         {
  13.        
  14.             string newString = "";
  15.  
  16.             if (str[0] == ' ')
  17.             {
  18.                 newString += char.ToUpper(str[1]);
  19.  
  20.                 for (int j = 2; j < str.Length; j++)
  21.                 {
  22.  
  23.                     if (str[j] == ' ')
  24.                     {
  25.                        
  26.                         char b = str[j + 1];
  27.                         newString += char.ToUpper(b);
  28.                         j++;
  29.  
  30.                     }
  31.                     else
  32.                     {
  33.                         char b = str[j];
  34.                         newString += b;
  35.                     }
  36.                 }
  37.                 return newString;
  38.             }
  39.             else
  40.             {
  41.                 newString += char.ToUpper(str[0]);
  42.                 for (int j = 1; j < str.Length; j++)
  43.                 {
  44.                     if (str[j] == ' ')
  45.                     {
  46.                         char b = str[j + 1];
  47.                         newString += char.ToUpper(b);
  48.                         j++;
  49.                     }
  50.                     else
  51.                     {
  52.                         char b = str[j];
  53.                         newString += b;
  54.                     }
  55.                 }
  56.                 return newString;
  57.             }
  58.         }
  59.     }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement