Skip to content

Instantly share code, notes, and snippets.

@bielawb
Last active June 24, 2016 05:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/d02ef8db41d255a7c4c3 to your computer and use it in GitHub Desktop.
Save bielawb/d02ef8db41d255a7c4c3 to your computer and use it in GitHub Desktop.
$caseInsensitive = @'
//node[
translate(@Name, "FIRST", "first") = 'first'
]
'@
Select-Xml -XPath $caseInsensitive -Path .\Test.xml |
ForEach-Object { $_.Node.Name }
$almostRegex = @'
//*[
translate(name(), '123456', '######') = 'h#'
]
'@
Select-Xml -XPath $almostRegex -Path .\TestPage.xhtml |
Select-Object Node
<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 xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<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