fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. string escaped = @"Hello\thello\nWorld!";
  10. string res = Regex.Unescape(escaped);
  11. Console.WriteLine(res);
  12. }
  13. }
Success #stdin #stdout 0.03s 33952KB
stdin
Standard input is empty
stdout
Hello	hello
World!