从文本中删除超链接

发布于 2024-10-24 05:05:26 字数 88 浏览 1 评论 0原文

我需要帮助,我确信它很简单,但我无法弄清楚。

在我的富文本框中,我复制了一个链接,但我不希望它成为超链接。

那么如何删除超链接呢?

I need help with it and i'm sure its simple but I cant figure it out.

In my rich text box I copy a link in and I dont want it to be a hyperlink.

So how do I remove the hyperlink?

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

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

发布评论

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

评论(2

烏雲後面有陽光 2024-10-31 05:05:26

您似乎在询问 Windows 窗体中 RichTextBox 中的超链接。如果是这样,只需将 DetectUrls 属性设置为 false 即可:

richTextBox1.DetectUrls = false;

It seems you're asking about hyperlinks in the RichTextBox in Windows Forms. If so, it's simply a matter of setting the DetectUrls property to false:

richTextBox1.DetectUrls = false;
可是我不能没有你 2024-10-31 05:05:26
string BadInput=Textbox.Text....
string GoodInput=BadInput.Replace("<","<").Replace(">",">");

当然,这是假设您不希望文本框中允许出现任何 HTML。

string BadInput=Textbox.Text....
string GoodInput=BadInput.Replace("<","<").Replace(">",">");

Of course, this is assuming you don't want any HTML to be allowed in the text box.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文