Popularity
1.6
Stable
Activity
0.0
Stable
10
2
0

Monthly Downloads: 90
Programming language: Elixir
License: MIT License
Tags: Validations    
Latest version: v1.0.0

uk_postcode alternatives and similar packages

Based on the "Validations" category.
Alternatively, view uk_postcode alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of uk_postcode or a related project?

Add another 'Validations' Package

README

UK Postcode

Build Status Hex Version Inline docs

UK postcode parsing and validation for Elixir. Based on the excellent Ruby library of the same name by @threedaymonk.

Usage

Validate full postcodes or parts of a postcode.

UKPostcode.valid? "W1A 1AA" #=> true
UKPostcode.full? "W1A 1AA"  #=> true
UKPostcode.outcode? "W1A"   #=> true

Extract parts of a full postcode.

UKPostcode.outcode "W1A 1AA" #=> "W1A"
UKPostcode.incode "W1A 1AA"  #=> "1AA"

Normalise badly formatted postcodes.

UKPostcode.normalise "w1a1aa"  #=> "W1A 1AA"