I am currently trying to achieve the relatively simple task of capturing values from a string which exist between sets of curly braces using a regular expression. The expres
You can use lookarounds:
Regex regex = new Regex( @"(?<=\{)(\w+)(?=\})");
or use matched group #1.