I\'ve been unable to find an answer on this: can I use the Regex.Matches method to return only the contents of items with curly braces?
Regex.Matches
If I us
If I understand what you want. Change the regex to {([^}]*)}. That will only capture the text between {}, not including them.
{([^}]*)}