码迷,mamicode.com
首页 > Web开发 > 详细

[PowerShell]HTML parsing -- get information from a website

时间:2015-12-28 20:31:14      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

link: http://stackoverflow.com/questions/9053573/powershell-html-parsing-get-information-from-a-website

希望能从一个网页里获取一些信息

function Get-FlightStatus {
    param($query)

    $url = "http://bing.com?q=flight status for $query"

    $result = Invoke-WebRequest $url

    $result.AllElements | 
        Where Class -eq "ans" |
        Select -First 1 -ExpandProperty innerText    
}

  

[PowerShell]HTML parsing -- get information from a website

标签:

原文地址:http://www.cnblogs.com/buhaiqing/p/5083541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!