Select-Xml and nested XPath evaluations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>$s = Select-Xml -Xml $x -XPath '//Rule' | |
>$s | foreach-object { $_.Node ; Select-Xml $_.Node -XPath 'descendant::BooleanProperty' | foreach-object { $_.Node } } |
worked but
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>$s = Select-Xml -Xml $x -XPath '//Rule' | |
>$s | foreach-object { $_.Node ; Select-Xml $_ -XPath 'descendant::BooleanProperty' | foreach-object { $_.Node } } |
failed with error messages showing that the current iterated value has an XML string representation.
An alternative fix is to explicitly cast the subject of the inner XPath selection to XML, thus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>$s = Select-Xml -Xml $x -XPath '//Rule' | |
>>$s | foreach-object { $_.Node ; Select-Xml ([xml] $_) -XPath 'descendant::BooleanProperty' | foreach-object { $_.Node } } |
though surprisingly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>$s = Select-Xml -Xml $x -XPath '//Rule' | |
>>$s | foreach-object { [xml] $_ ; Select-Xml ([xml] $_) -XPath 'descendant::BooleanProperty' | foreach-object { $_.Node } } |
fails to yield any results from the inner search; and I've not so far determined why. Replacing the final $_.Node
by [xml] $_
of course fails because False
is not an XML document.
No comments :
Post a Comment