I am bit confused writing the regex for finding the Text between the two delimiters { } and replace the text with another text in c#,how to replace?
the simplest way is to use split method if you want to avoid any regex .. this is an aproach :
string s = "sometext {getthis}"; string result= s.Split(new char[] { '{', '}' })[1];