需要正则表达式。用于剥离 Outlook HYPERLINK“urlname”

发布于 2024-11-30 13:59:22 字数 389 浏览 2 评论 0原文

我遇到了一个小问题。我正在制作一个 Outlook 插件,我可以在其中存档电子邮件。

当电子邮件包含 html/xhtml 等时,它会将超链接转换为 HYPERLINK“url”。 示例:

HYPERLINK "Company URL" 1 x Mexicano
HYPERLINK "Company URL" € 1,75
HYPERLINK "Company URL" 1 x Patat
HYPERLINK "Company URL" € 1,25

每一行都应该是一个可点击的 URL,但由于某种原因,outlook 不提供纯文本,而是这样...

所以我想从

以下内容中删除我的字符串: HYPERLINK“此处的任何字符” 有人可以帮我吗?

I've run into a little problem. Im making an Outlook Add-in, where i can archive an email.

When an email contains html/xhtml etc it converts hyperlinks into HYPERLINK "url".
Example:

HYPERLINK "Company URL" 1 x Mexicano
HYPERLINK "Company URL" € 1,75
HYPERLINK "Company URL" 1 x Patat
HYPERLINK "Company URL" € 1,25

each line should be an clickable URL, but for some reason outlook doesnt give plain text but this instead...

So i want to strip my string from: HYPERLINK "any characters here"

Can someone help me with this?

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

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

发布评论

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

评论(1

眉目亦如画i 2024-12-07 13:59:22

您可以使用类似的内容:

Regex regex = new Regex ("HYPERLINK \"(.*?)\"");

如果您正在寻找的话,这将与 HYPERLINK "Company URL" 1 x Mexicano 中的Company URL 相匹配。

You can use something like:

Regex regex = new Regex ("HYPERLINK \"(.*?)\"");

This will match Company URL in HYPERLINK "Company URL" 1 x Mexicano, if that's what you were looking for.

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