Popularity
1.5
Stable
Activity
0.0
Stable
10
2
0
Monthly Downloads: 5
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.
-
Elixir Drops 💦
🛠️ Tools for working with data effectively - data contracts using types, schemas, domain validation rules, type-safe casting, and more. -
exop
Elixir library that provides macros which allow you to encapsulate business logic and validate incoming parameters with predefined contract. -
is
Fast, extensible and easy to use data structure validation for elixir with nested structures support.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of uk_postcode or a related project?
README
UK Postcode
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"