class Program {
static void Main(string[] args) {
Regex simpleRegex = new Regex(@”D..t”);
Match _match = simpleRegex.Match(“I love Down hill station”);
if (_match.Success) {
Console.WriteLine(_match.Value);
}
}
}