-
Notifications
You must be signed in to change notification settings - Fork 0
/
03.Regexmon.cs
53 lines (45 loc) · 1.39 KB
/
03.Regexmon.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
namespace _03.Regexmon
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
public class Program
{
public static void Main()
{
string input = Console.ReadLine();
string patternDidi = @"[^A-Za-z-]+";
string patternBojo = @"[A-Za-z]+-[A-Za-z]+";
Regex regexDidi = new Regex(patternDidi);
Regex regexBojo = new Regex(patternBojo);
while (true)
{
Match didiMatch = regexDidi.Match(input);
if (didiMatch.Success)
{
Console.WriteLine(didiMatch.Value.ToString());
}
else
{
return;
}
int firstSymbolDidi = didiMatch.Index;
input = input.Substring(firstSymbolDidi + didiMatch.Length);
Match bojoMatch = regexBojo.Match(input);
if (bojoMatch.Success)
{
Console.WriteLine(bojoMatch.Value.ToString());
}
else
{
return;
}
int firstSymbolBojo = bojoMatch.Index;
input = input.Substring(firstSymbolBojo + bojoMatch.Length);
}
}
}
}