Advertisement
riff-raff

06 . Replace a tag

Jun 24th, 2018
400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.14 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text.RegularExpressions;
  4.  
  5. namespace _06._Replace_a_Tag
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.  
  12.             int rowCounter = 0;
  13.             string input = "";
  14.             string pattern = @"(<a.*?\w*?.*?)=(.*?)>(.*?)(<\/a>)";
  15.  
  16.             List<string> list = new List<string>();
  17.  
  18.             while (rowCounter < 100)
  19.             {
  20.                 input = Console.ReadLine();
  21.  
  22.                 //if input is end then break
  23.                 if (input == "end")
  24.                 {
  25.                     break;
  26.                 }
  27.                 else
  28.                 {
  29.                     var matches = Regex.Matches(input, pattern);
  30.  
  31.                     string replacer = "[URL href=$2]$3[/URL]";
  32.                     var replaced = Regex.Replace(input, pattern, replacer);
  33.  
  34.                     input = replaced;
  35.                     list.Add(input);
  36.                     rowCounter++;
  37.                 }
  38.             }
  39.             Console.WriteLine(string.Join(Environment.NewLine, list));
  40.             Console.WriteLine();
  41.         }
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement