fork download
  1. using System;
  2.  
  3. public sealed class Test
  4. {
  5. static void Main()
  6. {
  7. string test = " something with many spaces ";
  8.  
  9. Console.WriteLine(test.Replace(" ", " "));
  10. }
  11. }
Success #stdin #stdout 0.02s 34760KB
stdin
Standard input is empty
stdout
 something  with  many spaces