90919293949596979899100
*/ public Node selectSingleNode(Node contextNode, String str) { try { XPath path = new XPath(str); return (Node)path.selectSingleNode((Object)contextNode); } catch (Exception e){ // ignore it } return null; }