Match Zip Codes : ZIP Code « Regular Expressions « Java






Match Zip Codes

 

public class Main {
  public static void main(String[] a) {
    String zip = "1234-123";
    String zipCodePattern = "\\d{5}(-\\d{4})?";
    boolean retval = zip.matches(zipCodePattern);

  }
}

   
  








Related examples in the same category

1.Match ZipMatch Zip