jloyzaga Posted April 11, 2016 Share Posted April 11, 2016 I've got this project to check a url's metadata and compare it against what a file says it should be. I have done a search on this site for metadata and get a long list of specific calls to get specific metadata items but I'm wondering if there is a way to get the full list of metadata for a url? Even where to search would be a great help Thanks Joe Link to comment Share on other sites More sharing options...
Jury Posted April 12, 2016 Share Posted April 12, 2016 #include <IE.au3> $oIE = _IECreate("https://www.google.co.uk/", 1) $sHTML = _IEDocReadHTML($oIE) Local $aArray = StringRegExp($sHTML, '(?i)(<meta.*?>)', 3) For $i = 0 To UBound($aArray) - 1 ConsoleWrite($aArray[$i] & @CRLF) Next Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now