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?
Use Regex with pattern: \{([^\}]+)\}
\{([^\}]+)\}
Regex yourRegex = new Regex(@"\{([^\}]+)\}"); string result = yourRegex.Replace(yourString, "anyReplacement");