split search keywords by whitespaces and imply AND operatior

This commit is contained in:
iNPUTmice 2014-11-17 17:24:33 +01:00
parent e30e84c819
commit 252c7e68d6
1 changed files with 11 additions and 1 deletions

View File

@ -149,7 +149,17 @@ public class Contact implements ListItem {
return true;
}
needle = needle.toLowerCase();
return jid.toString().contains(needle) || getDisplayName().toLowerCase().contains(needle) || matchInTag(needle);
String[] parts = needle.split("\\s+");
if (parts.length > 1) {
for(int i = 0; i < parts.length; ++i) {
if (!match(parts[i])) {
return false;
}
}
return true;
} else {
return jid.toString().contains(needle) || getDisplayName().toLowerCase().contains(needle) || matchInTag(needle);
}
}
private boolean matchInTag(String needle) {