0

Excel 2010 でこの Web スクレイピング VBA コードを使用して、Web ページからタイトルを削除しています。コードの実行後にタイトルを値として貼り付けたい。

これが私のコードです:

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

'trying to paste as value after get title
'Application.CutCopyMode = False
'    Selection.Copy
'    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
'        :=False, Transpose:=False

End Function

ご協力いただきありがとうございます!

4

1 に答える 1

0

たぶん、このようなものが適しているのでしょうか?

Sub GetTitleFromURL()

  Dim source_wb As Object
  Dim target_wb As Object
  Dim target_sheet As Object
  Dim title As String
  Dim sURL As String

 Set target_wb = ActiveWorkbook
  Set target_sheet = target_wb.ActiveSheet

  sURL = target_sheet.Range("A1").Value
    Set source_wb = CreateObject("InternetExplorer.Application")
      source_wb.Navigate sURL
        While source_wb.Busy
          DoEvents
       Wend
     title = source_wb.Document.title
  source_wb.Quit

 target_sheet.Range("B1").Value = title

 Set source_wb = Nothing
   Set target_sheet = Nothing
 Set target_wb = Nothing

End Sub
于 2013-01-06T07:14:43.260 に答える