HTML Page Title in Excel VBA

2019-07-21 22:07发布

Given an url, how can I get the title of the html page in VBA in Excel?

For example suppose I have three urls like :

Now I need to get the title of these html pages in another column. How do I do it?

2条回答
Melony?
2楼-- · 2019-07-21 22:46

I am not sure what you mean by title, but here is an idea:

Dim wb As Object
Dim doc As Object
Dim sURL As String

Set wb = CreateObject("InternetExplorer.Application")

sURL = "http://lessthandot.com"

wb.Navigate sURL

While wb.Busy
    DoEvents
Wend

''HTML Document
Set doc = wb.document

''Title
Debug.Print doc.Title

Set wb = Nothing
查看更多
贪生不怕死
3楼-- · 2019-07-21 22:56

Remou's answer was VERY helpful for me, but it caused a problem: It doesn't close the Internet Explorer process, so since I needed to run this dozens of times I ended up with too many IEs open, and my computer couldn't handle this.

So just add

wb.Quit

and everything will be fine.

This is the code that works for me:

Function GetTitleFromURL(sURL As String)
Dim wb As Object
Dim doc As Object

Set wb = CreateObject("InternetExplorer.Application")

wb.Navigate sURL

While wb.Busy
    DoEvents
Wend

GetTitleFromURL = wb.Document.Title

wb.Quit

Set wb = Nothing
End Function
查看更多
登录 后发表回答