Hi,
Can any one let me know haw can I download website contents as plain text.
I need to get website contents and search for specific pattern. I am trying code below, but the out put I am getting is kind of HTML. I am not able to search my pattern. (Pasting test URL). I am looking for only data and not for posters inside.
$url = "http://office.microsoft.com/en-in/excel/"
$wc = new-object net.WebClient
$wc.Credentials= New-Object System.Net.NetworkCredential("Username","Password")
$wc.downloadstring($url)
Thanks,
Guru