0

我正在尝试将 Excel、Word 或 Numbers 超链接转换为 HTML<a>标记。

例如,我有 [linkName] 并且需要 <a href='URL'>[linkName]</a>.

有任何想法吗?谢谢你。

4

1 回答 1

0

经过艰苦的研究,我找到了一个可行的答案,在 word 或 excel 中,您可以创建一个新宏并稍后运行。

要创建宏,请转到“查看->宏”创建一个新宏并粘贴以下代码:

Sub AddHREF()
' Turn Word hyperlinks into <a href...> HTML tags
Dim i As Integer
For i = ActiveDocument.Hyperlinks.Count To 1 Step -1
  With ActiveDocument.Hyperlinks(i)
   If InStr(1, .Address, "http://www.gaebler.com", 1) Then
      .Range = "<a href=""" & Replace(.Address, "http://www.gaebler.com", "") & """>" _
      & Replace(Replace(.TextToDisplay, "<strong>", ""), "</strong>", "") & "</a>"
   Else
      .Range = "<a href=""" & .Address & """ target=""_blank"" rel=""nofollow"">" & _
      Replace(Replace(.TextToDisplay, "<strong>", ""), "</strong>", "") & "</a>"
   End If
  End With
    Next i
End Sub

然后只需运行宏,魔法就会出现!

于 2017-06-11T11:44:01.693 回答