HI guys
Help to know what is I'm doing wrong with my code,was trying to play with regex but its always keep the result on a blank file.
#include <WinHttp.au3>
Func socket()
Local $keyword = GUICtrlRead($Input1)
Local $sGet = HttpGet("http://news.google.com/news?pz=1&cf=all&ned=us&hl=en&output=rss&q="& $keyword)
$parse = StringRegExp($sGet, "(?<=\&\;url\=).*?(?=<\/link><guid)",5)
FileWrite("Google1.txt", $parse)
MsgBox (0, "Finish", "Cek File", "")
EndFunc
Thank you guys