/**
* The below are the possible combinations P.O.BOX, PO.BOX, P O BOX, P O B O
* X, POBOX, PO BOX, P.O.B.O.X
*
* @param input
* @return true if the input value = pobox else false
*/
public static boolean checkPoBox(String input) {
boolean poBox = false;
String inputVal = input;
try {
if (input.length() > 4) {
inputVal = inputVal.replace(".", "").replace(" ", "")
.toLowerCase();
if (inputVal.contains("pobox")
|| inputVal.equalsIgnoreCase("pobox")) {
poBox = true;
}
}
} catch (Exception e) {
log.debug("Exception from checkPoBox");
}
return poBox;
}