I'm working with regular expressions (Regex) but not finding the exact output. I want to find the values between two curly braces
{ Value } = value
I use the following pattern but not getting the exact output; it does not remove first "{" ...
string pattern = "\\{*\\}";
If my value is {girish}
it returns {girish
Instead of this I want girish
as output...