class ISO3166::Country

def postal_code_format

Returns:
  • (String) - The regex for valid postal codes in this Country
def postal_code_format
  "\\A#{data['postal_code_format']}\\Z" if postal_code
end