0

I have a string like "Please .... {@@url} something{@@test}somethinng ... some{@@url} ....", would like to replace exactly the strings {@@url} and {@@test} through regex in c#

Kindly help me to get the regex pattern

Thanks in advance!

Muthu R
  • 776
  • 1
  • 9
  • 15

1 Answers1

1

Regex to get string between curly braces "{I want what's between the curly braces}"

https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx

So something like

string pattern = @"/{(.*?)}/";
string input = "Please .... {@@url} something{@@test}somethinng ... some{@@url} ....";
Regex rgx = new Regex(pattern, RegexOptions.IgnoreCase);
MatchCollection matches = rgx.Matches(input);
if (matches.Count > 0)
{
  Console.WriteLine("{0} ({1} matches):", input, matches.Count);
  foreach (Match match in matches)
     input = input.replace(match.value, "");
}
Community
  • 1
  • 1
D. Stewart
  • 471
  • 4
  • 15