using System.Collections.Generic;
using System.Text.RegularExpressions;
List<string> inputs = new()
Regex regex = new Regex(pattern);
foreach (var input in inputs)
Match match = regex.Match(input);
$"'{input}' {(match.Success ? "did" : "did not")} " +
"match the string ending with the pattern.");