通过powershell中的变量更新链接

时间:2017-12-27 10:29:21

标签: powershell scripting

我正在尝试构建一个脚本,该脚本会从网站抓取一些文本并将其放入Excel工作表中,但是在使用变量时我在使用URL中的变量时遇到了问题输出为http://@{variable=xyz}.com,我试图仅获取xyz, 任何帮助将不胜感激

我的代码:

$ip = get-content c:\..
foreach ($ip in $ipadd){
$url = http://$ip/mywebsite.com
$html = invoke-webrequest -uri $url
$elements = $html.Allelements | where class -eq "class" | select -expandproperty innertext
}

1 个答案:

答案 0 :(得分:0)

我最终使用纯文本,它工作得很好。 但是如果有人能告诉我为什么我从csv文件中获得http://@{variable=xyz}.com输出

,我会很感激