저는 Powershell을 처음 사용하고 있으며, 아래 웹 사이트를 사용하여 오늘 발생한 글로벌 공휴일을 찾기 위해 웹 사이트를 긁어 내려고하고 있습니다.Powershell을 사용하여 오늘 발생하는 전세계 공휴일 만 찾으십시오.
여기 https://eresearch.fidelity.com/eresearch/markets_sectors/global/holidayCalendar.jhtml
는 지금까지 어떤 도움을 크게 감상 할 수있어 것입니다!
$a = Get-Date -UFormat "%m/%d/%y" #to get the date in mm/dd/yy format
$source = "https://eresearch.fidelity.com/eresearch/markets_sectors/global/holidayCalendar.jhtml"
$result = Invoke-WebRequest $source
$d = $result.AllElements | Where Class -eq "layout-calendar-content-column" | Select -ExpandProperty innerText
echo $d
이상적으로 변수 $ a에 포함 된 날짜와 일치하는 공휴일 만 표시됩니다.
'$의 d'에서 현재 출력은 무엇을 위해? – TheIncorrigible1
이 [Lee Holmes의 게시물] (http://www.leeholmes.com/blog/2015/01/05/extracting-tables-from-powershells-invoke-webrequest/)이 도움이 될 것입니다. 테이블을 PowerShell 개체로 변환하면 지정된 요일에만'Where-Object'를 사용하여 필터링 할 수 있습니다. – BenH
모든 국가, 모든 날짜, 모든 공휴일. – Ryan