I have address information and some junk in my DB and I have to just check if the string has zip code I need to process that. Can you explain how to check if a string has a 5 digits present. For example,
String addr = 10100 Trinity Parkway, 5th Floor Stockton, CA 95219;
So it has to match this string as it is having 5 digit zip code. Any way to check using Java Regular Expression?
Update:
String addr = "10100 Trinity Parkway, 5th Floor Stockton, CA 95219";
String addressMatcher = "\\d{5}";
if(addr.matches(addressMatcher)){
System.out.println(addr);
}
Above is the code I am using after getting the answers but none of the regex matches and prints the addr. Am I doing anything wrong? Regards, Karthik