#PSTip Using XPath in PowerShell, Part 3
Filtering data with XPath works very well even if we need more complex filters that require information from different levels in the XML document.
Read MoreFiltering data with XPath works very well even if we need more complex filters that require information from different levels in the XML document.
Read MoreXPath can be used to apply ‘filter left’ philosophy to XML documents. For example we can find any h1 element with ‘title’ id using the following syntax:
Read MoreThis is the first tip in a series of Select-Xml/XPath tips. Working with XML documents in PowerShell is relatively easy. For most things it is enough to read XML file and convert it to XmlDocument object using XML type accelerator:
Read MoreWhen working with Windows PowerShell Workflow, there are things to be aware of which can break workflow from working. One such thing is customizations made in the PowerShell profile.
Read MoreThe System.Uri class in .NET provides a way to validate if a URL is an absolute URL or not. This can be quite handy when your script deals with downloading content from web pages and there is a need to validate the specified URL.
Read MoreNote: This tip requires PowerShell 2.0 or above. Starting with PowerShell 3.0, it is possible to filter a collection for matching or non-matching values using comparison operators.
Read More