I have a bunch of strings, and I want to always get the string inbetween the { and } including the braces. So if I have
@"alsdkfj {'asdf':'stuff stuff'} more stuff"
I want output
@"{'asdf':'stuff stuff'}"
How could I do this? The string is always different so I cant just search for "alsdkfj", I need regarless of what it is to get inbetween the {}