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()