bool isSimilar(String value) { return replaceAll(" ", "").toLowerCase() == value.replaceAll(" ", "").toLowerCase(); }