I'm working with an HTML doc that contains the word "Español", however in the source code it's written as "Espa&# 241;ol" (Space added so it's not automatically changed by your browser)
If I do something like this, the "Español" is NOT found:
if (source.contains("Español"))
System.out.println("Found it");
If I do this, the word IS found:
if (source.contains("Español"))
System.out.println("Found it");
Can anyone provide insight into what's going on?