我有评论框当我键入注释,如果评论有任何联系的话,我会自动转换为链接通过以下方式。
protected string MakeLink(string txt)
{
Regex regx = new Regex("(http|https)://([a-zA-Z0-9\\~\\!\\@\\#\\$\\%\\^\\&\\*\\(\\)_\\-\\=\\+\\\\\\/\\?\\.\\:\\;\\'\\,]*)?", RegexOptions.IgnoreCase);
MatchCollection mactches = regx.Matches(txt);
foreach (Match match in mactches)
{
txt = txt.Replace(match.Value, "<a href='" + match.Value + "'>" + match.Value + "</a>");
}
return txt;
}
当我把所述标签会显示这样的“LT; A HREF =‘ http://asd.com ’GT; http://asd.com LT; / A gt;”中[现在我除去&否则创建链接在我的问题。 ]