fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string s;
  9.  
  10. s = Console.ReadLine();
  11. Console.WriteLine(Regex.Replace(s, @"([A-Z])\.", "$1"));
  12. }
  13. }
Success #stdin #stdout 0.12s 24512KB
stdin
A.B.C. a.b.c A.b.C.d.E.f. 1.2.3.4.5
stdout
ABC a.b.c Ab.Cd.Ef. 1.2.3.4.5