static bool isKey(String hrp, String str) { if (str.indexOf(hrp) == 0) { return true; } else { return false; } }