Case-insensitive node name search with XPath
To do a case-insensitive search for node names with XPath, use something like this: „//form[translate(., ‚ABCDEFGHIJKLMNOPQRSTUVWXYZ‘, ‚abcdefghijklmnopqrstuvwxyz‘)]“ This example searches for FORM tags inside an XML document. The dot ‚.‘ here means that it applies to the tag name. Therefore the above…