fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6.  
  7. namespace ConsoleApplication1
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13.  
  14. string filename = "abcde fgh i klmno" ;
  15. Regex regex = new Regex("[o ,a ,i ,e ,y ,u ]");
  16. filename = regex.Replace(filename, "enko ");
  17.  
  18. Console.WriteLine(filename);
  19.  
  20. }
  21.  
  22. }
  23. }
Success #stdin #stdout 0.07s 20804KB
stdin
Standard input is empty
stdout
enko bcdenko enko fghenko enko enko klmnenko