Как программно редактировать все гиперссылки в документе Word? - PullRequest
12 голосов
/ 28 июля 2010

Существует ли макрос, код VBA или VBScript, который я могу написать для редактирования URL-адресов всех гиперссылок в моем документе Word? Либо Word 97-2003, либо в формате docx.

Ответы [ 3 ]

13 голосов
/ 29 июля 2010
Dim doc As Document
Dim link, i
'Loop through all open documents.
For Each doc In Application.Documents
    'Loop through all hyperlinks.
    For i = 1 To doc.Hyperlinks.Count
        'If the hyperlink matches.
        If LCase(doc.Hyperlinks(i).Address) = "http://www.yahoo.com/" Then
            'Change the links address.
            doc.Hyperlinks(i).Address = "http://www.google.com/"
            'Change the links display text if desired.
            doc.Hyperlinks(i).TextToDisplay = "Changed to Google"
        End If
    Next
Next

Вот ссылка на все Методы и свойства гиперссылки

0 голосов
/ 17 марта 2018

Спасибо Tester за решение, использовав его для быстрой замены:

Sub ReplaceLinks()

Dim doc As Document
Dim link, i

'Loop through all open documents.
For Each doc In Application.Documents
    'Loop through all hyperlinks.
    For i = 1 To doc.Hyperlinks.Count

        'Update old bookmarks to https
        doc.Hyperlinks(i).Address = Replace(doc.Hyperlinks(i).Address, "gopher:", "https://")

   Next
Next
End Sub
0 голосов
/ 23 октября 2013

Это очень помогло мне. Пользователь открыл Документы Word, содержащие гиперссылки, через свой подключенный диск, вместо того чтобы идти по сети. Сотни документов будут сохранены!

Я использовал функцию mid ():

Sub FixMyHyperlink()

    Dim doc As Document
    Dim link, i

    'Loop through all open documents.
    For Each doc In Application.Documents
        'Loop through all hyperlinks.
        For i = 1 To doc.Hyperlinks.Count
            'If the hyperlink matches.
            If LCase(doc.Hyperlinks(i).Address) Like "*partOfHyperlinkHere*" Then
                'Change the links address. Used wildcards (*) on either side.
                doc.Hyperlinks(i).Address = Mid(doc.Hyperlinks(i).Address, 70,20)        '
                'Change the links display text if desired.
                'doc.Hyperlinks(i).TextToDisplay = "Oatmeal Chocolate Chip Cookies"
            End If
        Next
    Next
End Sub
...