[AHK]从time.tianqi.com获取时间

;作者:sunwind
;日期:2017年12月21日21:07:33
;功能:从time.tianqi.com获取时间
#SingleInstance,force
url=http://time.tianqi.com
whr := ComObjCreate("WinHttp.WinHttpRequest.5.1")
whr.Open("GET", url, true)
whr.Send()
whr.WaitForResponse()
str:=whr.ResponseText
Clipboard:=str


Loop,Parse,str,`n
{
	 IfInString,A_LoopField,

你可能感兴趣的:(AutoHotkey,爬虫)