Android Utililty Methods HTML Element Search

List of utility methods to do HTML Element Search

Description

The list of methods to do HTML Element Search are organized into topic(s).

Method

booleanIsContainImg(String html)
Is Contain Img
Matcher m = patternImg.matcher(html);
while (m.find()) {
    return true;
return false;