Package org.jsoup.select

Examples of org.jsoup.select.Elements.forEach()


        toc.select("li > ul.sectlevel2").forEach(subsection ->
            subsection.parent().remove()
        );

        toc.forEach(part ->
            part.select("a[href]").stream()
                .filter(anchor ->
                        doc.select(anchor.attr("href")).get(0).parent().classNames().stream()
                                .anyMatch(clazz -> clazz.startsWith("reveal")))
                .forEach(href -> href.parent().remove())
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.