fork(5) download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var re = new Regex(@"[\u0080-\uFFFF]");
  9.  
  10. var s = re.Replace("H€ELLOŠŠŠŠWorld. This is a sample 1234 $.", " ");
  11.  
  12. Console.WriteLine(s);
  13. }
  14. }
Success #stdin #stdout 0.06s 34120KB
stdin
Standard input is empty
stdout
H ELLO    World. This is a sample 1234 $.