I have a problem with writting a reg exp for a string like this in C#
String correct = "<a>link</a>";
String wrong = "link</a>";
I know how to select the first in a reg exp example
string regExp = "^(<a>)";
Ans i know how to select the last one
string regExp = "(</a>)$";
But how could i combine this two, to one