Python:将电子邮件地址转换为 HTML 链接
我正在寻找一个独立的 python 函数,它将接收一个字符串并返回一个将电子邮件地址转换为链接的字符串。
例子:
>>>s = 'blah blah blah [email protected] blah blah blah'
>>>link(s)
'blah blah blah <a href="mailto:[email protected]">[email protected]</a> blah blah blah'
I'm looking for a stand-alone python function that will take in a string and return a string with the email addresses converted to links.
Example:
>>>s = 'blah blah blah [email protected] blah blah blah'
>>>link(s)
'blah blah blah <a href="mailto:[email protected]">[email protected]</a> blah blah blah'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西吗?
Something like this?
不是超级强大,但适用于非常基本的情况。
Not super robust but works for very basic cases.