Jump to content

Web scraping: Difference between revisions

no edit summary
m (added whitespace before the TOC (table of contents), added a ;Task: (bold) header.)
No edit summary
Line 1,392:
$html -match ', (.*) UTC' | Out-Null
Write-Host $Matches[1]</lang>
 
===fyi===
.NET provides a property named '''UtcNow''':
<lang PowerShell>
[System.DateTime]::UtcNow
</lang>
{{Out}}
<pre>
Wednesday, December 14, 2016 2:06:25 AM
</pre>
I am currently in the Pacific timezone:
<lang PowerShell>
[System.DateTime]::Now
</lang>
{{Out}}
<pre>
Tuesday, December 13, 2016 6:06:25 PM
</pre>
 
=={{header|PureBasic}}==
308

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.