Quantcast
Channel: Powershell Match Multiple Fields, including Encoded - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by Keith Hill for Powershell Match Multiple Fields, including Encoded

Use Format-List instead of Format-Table e.g.:$feed.rss.channel.Item | Where {$_.title -match "boker"} | Format-List title, link, descriptionor$feed.rss.channel.Item | ? {$_.title -match "boker"} | fl...

View Article



Answer by zdan for Powershell Match Multiple Fields, including Encoded

The data in the encoded property is wrapped in another property called the "#cdata-section", so you have to expand that as well.To match on both properties just include both matches in your where...

View Article

Powershell Match Multiple Fields, including Encoded

Google has been my friend and I have made some progress on code that I am working on. But I am not a programmer by trade, so I got so far and now I am stuck.I have an rss feed that I am trying to parse...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images