hi,
i neet to get a table content from an html site..
i tried it with this but it didn't give me the information i need.
get-Host $site = Invoke-WebRequest -UseBasicParsing -Uri http://mysite.com $site.Links | Out-GridView
how can i take out the "Lamp Time" and "37 h" out of this source and show it with powershell.. Im still not really into this..(still a noob)
<div align="right"> <br><table width="98%" border="0" cellspacing="2" cellpadding="4"> <tbody> <tr> <th nowrap="" class="item_nm_1">Lamp Time </th> <div align="left">37 h</div><td nowrap="" class="item_op_1"></td> </tr> <tr> <th nowrap="" class="item_nm_1">Total Lamp Hours </th> <td nowrap="" class="item_op_1"> </tr> </tbody></table> <br> </div>
thanks guys,
anita
Add comment