ExcelTip.Net留存知识帖 ---【注:附件之前被网盘供应商清空后,现已修复-现已修复-现已修复为本地下载!】
现在位置:首页 > 我的酷贴 > Excel VBA > 如何删减导入到Excel 中的网页的特定数据?

如何删减导入到Excel 中的网页的特定数据?

作者:绿色风 分类: 时间:2022-08-18 浏览:104
楼主
herelazy
Q:如何删减导入到Excel 中的网页的特定数据?
需要从网页
如图所示:

 

A:
  1. Sub test()
  2. Dim RegEx As Object, mMatch, N&
  3. Set RegEx = CreateObject("vbscript.regexp")
  4. With RegEx
  5.     .Global = True
  6.     .MultiLine = True
  7.     .ignorecase = True
  8.     .Pattern = "class\=""month.*?\>(.*?)(?=\<)|\<strong\>(\d+)\<.*?\>\<.*?\>(\d.\d+)(?=\<)"
  9. End With
  10. With CreateObject("msxml2.xmlhttp.3.0")
  11.     .Open "get", "http://www.ecb.int/stats/exchange/eurofxref/html/eurofxref-graph-usd.en.html", False
  12.     .send
  13.     If RegEx.test(.responsetext) Then
  14.         Cells.ClearContents
  15.         N = 1
  16.         For Each mMatch In RegEx.Execute(.responsetext)
  17.             If LCase(mMatch.Value) Like "*month*" Then
  18.                 Cells(N, 1) = Split(mMatch.submatches(0), "-")(0)
  19.             Else
  20.                 Cells(N, 1) = mMatch.submatches(1)
  21.                 Cells(N, 2) = mMatch.submatches(2)
  22.             End If
  23.             N = N + 1
  24.         Next mMatch
  25.     End If
  26. End With
  27. Set RegEx = Nothing
  28. End Sub


效果图:

 


删减导入到Excel 中的网页的特定数据.rar


2楼
水星钓鱼
正则、XML的结合,学习下。

免责声明

有感于原ExcelTip.Net留存知识的价值及部分知识具有的时间限定性因素, 经与ExcelTip.Net站长Apolloh商议并征得其同意, 现将原属ExcelTip.Net的知识帖采集资料于本站点进行展示, 供有需要的人士查询使用,也慰缅曾经的论坛时代。 所示各个帖子的原作者如对版权有异议, 可与本人沟通提出,或于本站点留言,我们会尽快处理。 在此,感谢ExcelTip.Net站长Apolloh的支持,感谢本站点所有人**绿色风(QQ:79664738)**的支持与奉献,特此鸣谢!
------本人网名**KevinChengCW(QQ:1210618015)**原ExcelTip.Net总版主之一

评论列表
sitemap