fork(6) download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text.RegularExpressions;
  4. using System.Linq;
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. var pat = @"[\x0A\x0D\x09]";
  10. var s = "1\r2\n3\t4";
  11. var res = Regex.Replace(s, pat, " ");
  12. Console.WriteLine(res);
  13. }
  14. }
Success #stdin #stdout 0.02s 134528KB
stdin
Standard input is empty
stdout
1 2 3 4