Advertisement
aaronvan

CameCaseCodeWars

May 30th, 2018
626
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.11 KB | None | 0 0
  1. namespace CamelCase
  2. {
  3.     class Program
  4.     {
  5.         static void Main()
  6.         {
  7.             Console.WriteLine(CamelCase("mw  lupq  aiht jvzujptarsqxu i cur ndgycvec uvkcd"));
  8.             Console.ReadKey();
  9.         }
  10.  
  11.         public static string CamelCase(string str)
  12.         {
  13.             if (String.IsNullOrWhiteSpace(str))
  14.                 return str;
  15.  
  16.             // new string
  17.             string newString = "";
  18.  
  19.             /* test first char. If white space... */
  20.             if (str[0] == ' ')
  21.             {
  22.                 // skip the white space and go to second letter in str, capitalize it and append to newString
  23.                 newString += char.ToUpper(str[1]);
  24.  
  25.                 for (int j = 1; j < str.Length; j++)
  26.                 {
  27.                     // skip any white space and capitalize the next letter
  28.                     if (str[j] == ' ')
  29.                     {
  30.                         char b = str[j + 1];
  31.                         newString += char.ToUpper(b);
  32.                         j++;
  33.                     }
  34.                     else
  35.                     {
  36.                         char b = str[j];
  37.                         newString += b;
  38.                     }
  39.                 }
  40.                 return newString.Replace(" ", "");
  41.             }
  42.             /* test first char. If char is a letter... */
  43.             else
  44.             {
  45.                 // capitalize the first letter and append it to newString
  46.                 newString += char.ToUpper(str[0]);
  47.                
  48.         for (int j = 1; j < str.Length; j++)
  49.                 {
  50.                     // skip any white space and capitalize the next letter
  51.                     if (str[j] == ' ')
  52.                     {
  53.                         char b = str[j + 1];
  54.                         newString += char.ToUpper(b);
  55.                         j++;
  56.                     }
  57.                     else
  58.                     {
  59.                         char b = str[j];
  60.                         newString += b;
  61.                     }
  62.                 }
  63.                 return newString.Replace(" ", "");
  64.             }
  65.         }
  66.     }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement