Announcing PowerShell, DevOps, and Cloud Conference 2021
PowerShell Conference Asia 2019 was a huge success. The attendee turnout was …
Read MorePowerShell Conference Asia 2019 was a huge success. The attendee turnout was …
Read MoreWhat Posh-SSH is a PowerShell 3.0 or newer module for automating tasks against …
Read MoreWhen we analyze XML documents with XPath we may need information about number of certain items. For example, we can have an XHTML document with several tables and we can easily check which tables contain rows with ‘class’ attribute:
Read MoreXPath has one big disadvantage–it’s case sensitive. Unlike regular expressions, there is no way to “turn it off”. But there is a way around it.
Read MoreFiltering using XPath is not limited to queries that make sure that existing value is equal to value that we are interested in.
Read MoreMost of you probably know how to create a Globally Unique Identifier (GUID) with the following code: [System.Guid]::NewGuid() But, let’s say, I have a function that has a GUID parameter.
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 More