19
1
using System;
2
using System.Text.RegularExpressions;
3
4
string input = "Hello, World!";
5
Regex regex = new Regex("Hello");
6
MatchCollection matches = regex.Matches(input);
7
8
if (matches.Count > 0)
9
{
10
Console.WriteLine("Pattern(s) found:");
11
foreach (Match match in matches)
12
{
13
Console.WriteLine($"\t {match.Value}");
14
}
15
}
16
else
17
{
18
Console.WriteLine("Pattern not found.");
19
}
Cached Result
Pattern(s) found:
Hello
Hello