从文本中删除超链接
我需要帮助,我确信它很简单,但我无法弄清楚。
在我的富文本框中,我复制了一个链接,但我不希望它成为超链接。
那么如何删除超链接呢?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您似乎在询问 Windows 窗体中 RichTextBox 中的超链接。如果是这样,只需将 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:
当然,这是假设您不希望文本框中允许出现任何 HTML。
Of course, this is assuming you don't want any HTML to be allowed in the text box.