1
我有一個文本文件中的網站列表,我希望收集主頁的元數據。我怎樣才能做到這一點?powershell:從網站列表中提取元數據
例如,網站 「」 元數據我想恢復是
meta name="keywords" content="**Chamber of Mines, South Africa, Mining**
我有一個文本文件中的網站列表,我希望收集主頁的元數據。我怎樣才能做到這一點?powershell:從網站列表中提取元數據
例如,網站 「」 元數據我想恢復是
meta name="keywords" content="**Chamber of Mines, South Africa, Mining**
事情是這樣的:
$web = New-Object Net.WebClient
$a = $web.DownloadString("Http://www.bullion.org.za")
$a | Select-String -Pattern '(meta name="keywords".+")' -allmatches |
select -expa matches | select -expa value
這retuns:
meta name="keywords" content="Chamber of Mines, South Africa, Mining"
選擇字符串是美麗。 – D3vtr0n
你如何得到這個作爲散列表。 – Ishan