I have a string:
<a href="mailto:me@company.com">Joel Werner</a>
and I need to strip everything off but my name
The expression I have now, almost does that.
var pattern = new System.Text.RegularExpressions.Regex(">(?<name>.+?)<");
But when I match them I get
>Joel Werner<
What am I missing, because I do not really like regular expressions