fbinnzhivko

7.00 To Uppercase

Jun 4th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. class ParseTags
  5. {
  6.     static void Main()
  7.     {
  8.         string text = Console.ReadLine();
  9.         Console.WriteLine(Regex.Replace(text, "<upcase>(.*?)</upcase>", word => word.Groups[1].Value.ToUpper()));
  10.     }
  11. }
Add Comment
Please, Sign In to add comment