RosettaCodeData/Task/Web-scraping/AutoHotkey/web-scraping.ahk

5 lines
180 B
AutoHotkey
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
UrlDownloadToFile, http://tycho.usno.navy.mil/cgi-bin/timer.pl, time.html
FileRead, timefile, time.html
pos := InStr(timefile, "UTC")
msgbox % time := SubStr(timefile, pos - 9, 8)