fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string str = "Harry Potter And The Deathly Hallows Part 2 2011";
  9. string result = Regex.Replace(str, @"(\b\d{4}\b)", "($1)");
  10. Console.WriteLine(result);
  11. }
  12. }
Success #stdin #stdout 0.08s 34136KB
stdin
Standard input is empty
stdout
Harry Potter And The Deathly Hallows Part 2 (2011)