15
1
using System;
2
using System.Text.RegularExpressions;
3
4
string input = "Hello, World!";
5
Regex regex = new Regex("Hello");
6
Match match = regex.Match(input);
7
8
if (match.Success)
9
{
10
Console.WriteLine($"Pattern found: {match.Value}");
11
}
12
else
13
{
14
Console.WriteLine("Pattern not found.");
15
}
Cached Result
Pattern found: Hello