using System.Text.RegularExpressions;
Regex rx = new Regex("{()}");
string s= "bljlah{blah}djh";
MatchCollection matches = rx.Matches(s);
foreach(Match match in matches)
GroupCollection groups = match.Groups;
foreach(Group gr in groups)
Console.WriteLine(gr.Value);