Java HTML Jsoup Element getElIndexInSameTags(Element e)

Here you can find the source of getElIndexInSameTags(Element e)

Description

get El Index In Same Tags

License

Apache License

Declaration

public static int getElIndexInSameTags(Element e) 

Method Source Code


//package com.java2s;
/*//w ww.java  2  s.  co m
   Copyright 2014 Wang Haomiao<et.tw@163.com>
    
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    
 http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
 */

import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

public class Main {

    public static int getElIndexInSameTags(Element e) {
        Elements chs = e.parent().children();
        int index = 1;
        for (int i = 0; i < chs.size(); i++) {
            Element cur = chs.get(i);
            if (e.tagName().equals(cur.tagName())) {
                if (e.equals(cur)) {
                    break;
                } else {
                    index += 1;
                }
            }
        }
        return index;
    }
}

Related

  1. getElementByXPath(String xpath, Document doc)
  2. getElementsByClass(String className, Element boardElement)
  3. getElementsFirstLevel(String html)
  4. getElementTextBySelector(String html, String selector)
  5. getElementValue(Element wrapperElement, String cssQuery)
  6. getFirstWithOwnText(final Elements elementList, final String text)
  7. getFormattedText(Element element)
  8. getIndustry(Element element)
  9. getInt(Elements td, int i)