TheBulgarianWolf

Regex Find Names

Apr 8th, 2021
540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. namespace FindNames
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string pattern = @"(?<firstName>[A-Z][a-z]+) (?<lastName>[A-Z][a-z]+)";
  11.             Regex reg = new Regex(pattern);
  12.             string input = Console.ReadLine();
  13.             var matches = reg.Matches(input);
  14.             foreach(var match in matches)
  15.             {
  16.                 Console.WriteLine(match);
  17.             }
  18.         }
  19.     }
  20. }
  21.  
Add Comment
Please, Sign In to add comment