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