Here you can find the source of getAttributeIgnoreCase(Element element, String string)
Parameter | Description |
---|---|
element | a parameter |
string | a parameter |
public static String getAttributeIgnoreCase(Element element, String string)
//package com.java2s; /******************************************************************************* * Copyright (c) 2006 Sybase, Inc. and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors://from w w w. j ava 2 s . c o m * Sybase, Inc. - initial API and implementation *******************************************************************************/ import org.w3c.dom.Element; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; public class Main { /** * @param element * @param string * @return the attribute named string on element ignoring case in the comparison * or null if not found */ public static String getAttributeIgnoreCase(Element element, String string) { NamedNodeMap map = element.getAttributes(); for (int i = 0; i < map.getLength(); i++) { Node attr = map.item(i); if (string.equalsIgnoreCase(attr.getNodeName())) { return attr.getNodeValue(); } } return null; } }