fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8.  
  9. var str = "P u m p k i n p i e";
  10. var res = Regex.Replace(str, @"\s(?=\S|\s{2,})", "");
  11. Console.WriteLine(res);
  12.  
  13. }
  14. }
Success #stdin #stdout 0.03s 30064KB
stdin
Standard input is empty
stdout
Pumpkin pie