gpt4 book ai didi

python - Outlook 超链接的格式是什么?

转载 作者:行者123 更新时间:2023-12-05 05:28:21 26 4
gpt4 key购买 nike

我正在开发一种实用程序,用于获取大量(~80)个超链接并将它们转换为可以粘贴到 Outlook 电子邮件中的格式——使 Outlook 仅显示来自链接 URL 的参数。我们的错误跟踪系统中的超链接实际引用错误。超链接仅在 URL 末尾的错误编号参数上有所不同。我的计划是让该实用程序将 Outlook 格式的超链接推送到剪贴板上,以便将它们粘贴到 Outlook 中。我遇到的问题是:Outlook 期望按照描述粘贴超链接的格式是什么——将单个错误编号作为链接的可见文本?作为引用,我正计划用 Python 完成所有这些。

最佳答案

不确定python implementation , 但在 c# 中,您可以使用 System.Windows.Forms.Clipboard 为富文本编辑器复制 HTML 格式的文本。参见 related SO postHTML Clipboard Format on MSDN .也许使用 this reference link - 您可以将其转换为基于 Python 的方法。

private const string html = @"Version:0.9
StartHTML:<<<<<<<1
EndHTML:<<<<<<<2
StartFragment:<<<<<<<3
EndFragment:<<<<<<<4
SourceURL: {0}
<html>
<body>
<!--StartFragment-->
<a href='{0}'>{1}</a>
<!--EndFragment-->
</body>
</html>";

string link = String.Format(html, "http://www.stackoverflow.com", "StackOverflow");
Clipboard.SetText(link, TextDataFormat.Html);

关于python - Outlook 超链接的格式是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12133310/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com