fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static string ReduceSpaces( string input )
  6. {
  7. char[] a = input.ToCharArray();
  8. int placeComma = 0, placeOther = 0;
  9. bool inQuotes = false;
  10. bool followedComma = true;
  11. foreach( char c in a ) {
  12. inQuotes ^= (c == '\"');
  13. if (c == ' ') {
  14. if (!followedComma)
  15. a[placeOther++] = c;
  16. }
  17. else if (c == ',') {
  18. a[placeComma++] = c;
  19. placeOther = placeComma;
  20. followedComma = true;
  21. }
  22. else {
  23. a[placeOther++] = c;
  24. placeComma = placeOther;
  25. followedComma = false;
  26. }
  27. }
  28. return new String(a, 0, placeComma);
  29. }
  30.  
  31. public static void Main()
  32. {
  33. string testcase = "1, 4, 2, \"PUBLIC, JOHN Q\" ,ACTIVE , 1332 , TROUBLE COLUMN ";
  34. System.Console.WriteLine("\"" + ReduceSpaces(testcase) + "\"");
  35. }
  36. }
Success #stdin #stdout 0.02s 33872KB
stdin
Standard input is empty
stdout
"1,4,2,"PUBLIC,JOHN Q",ACTIVE,1332,TROUBLE COLUMN"