I'm using powerShell, and I want to use lower-case() in a XPath.Something like that
//Machines/Machine[lower-case(@FQDN)=lower-case('machine2.mydomain.com')]
The documentation indicate that I need XPath 2.0, how can I check the version of XPath installed on my server?
.ToLower()
for example"IDONTKNOWWHATWEREYELLINGABOUT".ToLower()
would returnidontknowwhatwereyellingabout
. Not sure about the Xpath part of the question? – Glyptography