<a href="http://www.try.com"><strong>Try link word</strong></a>
你好。我怎样才能把这个字符串的一部分
http://www.try.com和尝试链接词
使用 c# 4.0 正则表达式?
我尝试了这个,但没有奏效;
var expression = @"<a href=""(.*?)""><strong>(.*?)</strong>";
Match m = Regex.Match(text, expression);
while (m.Success)
{
Response.Write("Match: " + m.Groups[0] + " <br> Area code: " + m.Groups[1] +"<br><hr><br>");
m = m.NextMatch();
}