22
1
using System;
2
using System.Collections.Generic;
3
using System.Text.RegularExpressions;
4
5
List<string> inputs = new()
6
{
7
"Hello, World!",
8
"Something something Hello!",
9
" Hello",
10
"Hello from Dev Leader!",
11
};
12
13
string pattern = "^Hello";
14
Regex regex = new Regex(pattern);
15
16
foreach (var input in inputs)
17
{
18
Match match = regex.Match(input);
19
Console.WriteLine(
20
$"'{input}' {(match.Success ? "did" : "did not")} " +
21
"match the string starting with the pattern.");
22
}
Cached Result