Skip to content

Instantly share code, notes, and snippets.

@bielawb
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/7bebb72c2f34885365ae to your computer and use it in GitHub Desktop.
Save bielawb/7bebb72c2f34885365ae to your computer and use it in GitHub Desktop.
$xml = [XML](Get-Content .\Test.xml)
$xml.root.node[0].subNode
Select-Xml -Path .\TestPage.xhtml -XPath //h1 |
ForEach-Object { $_.Node } | Format-Table -AutoSize InnerText, ParentNode
<root>
<node Name="First">
<subNode Number="1" />
<subNode Number="2" />
</node>
<node Name="Second" />
</root>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Test Page</title>
</head>
<body>
<h1 id="title">This is first H1 directly under 'body'</h1>
<ol>
<li><h1>This is my h1 in list!</h1></li>
<li>This won't show up...</li>
</ol>
<h2>Header, but smaller...</h2>
<h3>Even smaller one.</h3>
<h6>Smallest?</h6>
<table>
<colgroup>
<col/>
<col/>
<col/>
</colgroup>
<tr>
<th id="testing">Test</th>
<th><h1>Another h1 in table header...</h1></th>
<th id="othertest">Another Test</th>
</tr>
<tr>
<td><h1>and h1 hidden in the table cell...</h1></td>
<td>Select-Xml-Test</td>
<td>Oops?</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment