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?
If I us
I always liked it explicit. So you can use "positive lookbehind" (?<=...) and "positive lookahead" (?=...) groups:
(?<=\{)
[^}]*
(?=\})
which means: