fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text.RegularExpressions;
  6.  
  7. public class Test
  8. {
  9. public static void Main()
  10. {
  11. var s_text = "Bonaparte)";
  12. Regex r = new Regex(@"([a-z])e\b", RegexOptions.IgnoreCase);
  13. s_text = r.Replace(s_text, "$1");
  14. Console.WriteLine(s_text);
  15. }
  16. }
Success #stdin #stdout 0.03s 134592KB
stdin
Standard input is empty
stdout
Bonapart)