Try:
detail = Core.URL.Replace(detail,
delegate(Match match)
{
// match.ToString() will contain http://stackoverflow.com in your case :)
return string.Format("<a target=\"_blank\" href=\"{0}\">{0}</a>", match.ToString());
});
With Core.URL.Replace defined as:
public static Regex URL = new Regex(@"(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])", RegexOptions.Compiled);
This code originally came from:
http://weblogs.asp.net/farazshahkhan/archive/2008/08/09/regex-to-find-url-within-text-and-make-them-as-link.aspx#7224581