How to edit Regex tag.
This is my code:
var target="<p><a href="<ers:redirectURL>xxx</ers:redirectURL>" target="_blank">sean</a></p>";
var mc = new Regex("<(\\s*/?\\s*([^\\s/>]+).*?)>").Matches(target);
only 5 value.
{<p>}
{<a href="<ers:redirectURL>}
{</ers:redirectURL>}
{</a>}
{</p>}
How can I get this 6 exact value?
{<p>}
{<a}
{<ers:redirectURL>}
{</ers:redirectURL>}
{</a>}
{</p>}
please help me how to edit Regex.