查找纯文本形式的 url 并插入 HTML A 标记

发布于 2024-10-20 09:48:12 字数 353 浏览 3 评论 0原文

我有带有 URL 的文本,我需要用 HTML A 标记来包装它们,如何在 C# 中做到这一点?

例如,我有

My text and url http://www.google.com The end.

我想得到

My text and url <a href="http://www.google.com">http://www.google.com</a> The end.

I have text with URL and I need to wrap them with HTML A markup, how to do that in c#?

Example, I have

My text and url http://www.google.com The end.

I would like to get

My text and url <a href="http://www.google.com">http://www.google.com</a> The end.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞄了个咪的 2024-10-27 09:48:12

您可以为此使用正则表达式。如果您需要更好的正则表达式,可以在这里搜索 http://regexlib.com/Search.aspx ?k=url

我的快速解决方案是这样的:

string mystring = "My text and url http://www.google.com The end.";

Regex urlRx = new Regex(@"(?<url>(http:[/][/]|www.)([a-z]|[A-Z]|[0-9]|[/.]|[~])*)", RegexOptions.IgnoreCase);

MatchCollection matches = urlRx.Matches(mystring);

foreach (Match match in matches)
{
    var url = match.Groups["url"].Value;
    mystring = mystring.Replace(url, string.Format("<a href=\"{0}\">{0}</a>", url));
}

You can use a regex for this. If you need a better Regex you can search for it here http://regexlib.com/Search.aspx?k=url

My quick solution for this would be this:

string mystring = "My text and url http://www.google.com The end.";

Regex urlRx = new Regex(@"(?<url>(http:[/][/]|www.)([a-z]|[A-Z]|[0-9]|[/.]|[~])*)", RegexOptions.IgnoreCase);

MatchCollection matches = urlRx.Matches(mystring);

foreach (Match match in matches)
{
    var url = match.Groups["url"].Value;
    mystring = mystring.Replace(url, string.Format("<a href=\"{0}\">{0}</a>", url));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文