using System.Text.RegularExpressions;
public static void Main()
string content = @"";
var matches = new Regex(@"!\[(.*?)\]\((.*?)\)").Matches(content);
Console.WriteLine(matches[0].Groups[1]);
Console.WriteLine(matches[0].Groups[2]);