I'm trying to replace a string like
<p><strong>@001@</strong></p>
or
<p><strong>@002@</strong></p>
or
<p><strong>@010@</strong></p>
or any other number from 1-to 10 in empty string.
i've tried this
Regex.Replace(HTML, @"[<p><a-z>@0-9@</a-z></p>]", "");
But it remove all the html tags from the string