我正在尝试比较一行 HTML 和一串包含变量的 HTML。但是,当我的方法应该返回 TRUE 时,它会一直返回 FALSE。
//textLineToCheck contains the HTML string
public static boolean checkWhiteList(String textLineToCheck, String nameOfPerson) {
textLineToCheck=textLineToCheck.trim();
textLineToCheck=textLineToCheck.toLowerCase();
boolean isOfValue=false;
if (textLineToCheck.equals("<h2 class='altResource'>"+nameOfPerson+"</h2>")) {
isOfValue=true;
}
return isOfValue;
} //end checkWhiteList()