fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. String test ="Q1W2-hjkxas1-EE3R4-5T";
  9. Regex rgx = new Regex("[^a-zA-Z0-9]");
  10. Console.WriteLine(rgx.Replace(test, ""));
  11. }
  12. }
Success #stdin #stdout 0.08s 31068KB
stdin
Standard input is empty
stdout
Q1W2hjkxas1EE3R45T