Advertisement
Sephinroth

prac 13

Dec 1st, 2019
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.99 KB | None | 0 0
  1. // Исходная строка – 10000 символов из романа «Война и мир», искомая строка: а) «князь» б) «императрица»
  2.  
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.IO;
  8. using System.Text.RegularExpressions;
  9. namespace ConsoleApplication2
  10. {
  11.     class Program
  12.     {
  13.         static void Main(string[] args)
  14.         {
  15.             StreamReader input = new StreamReader("e:/practice/input.txt", Encoding.GetEncoding(1251));
  16.             string text = input.ReadToEnd();
  17.             input.Close();
  18.             Regex rex = new Regex (@"\d{1,3}\.\d{1,3}\.\d{1,3}\.d{1,3}");
  19.             MatchCollection arr = rex.Matches(text);
  20.             StreamWriter output = new StreamWriter("e:/practice/output.txt", false);
  21.             output.WriteLine("Найденные IP: ");
  22.             foreach (Match el in arr) {
  23.                 output.WriteLine(el);
  24.             }
  25.             output.Close();
  26.            
  27.     }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement