Giter Club home page Giter Club logo

address-splitter's Introduction

AddressSplitting

Packagist Build Status Software License

Tries to split an address line into street name, house number and other additional information like building, apartment information etc.

Installation

This project can be installed via Composer:

$ composer require viison/address-splitter

Usage

The AddressSplittingService only contains one static function splitAddress that performs the address splitting. The function expects one parameter, which is the address line. The function returns an associative array with the keys additionToAddress1, streetName, houseNumber and additionToAddress2. additionToAddress1 and additionToAddress2 contain information given in front of or after the street name & house number, respectively.

Example

You can use the address splitting service as follows:

var_dump(\VIISON\AddressSplitter\AddressSplitter::splitAddress('Pallaswiesenstr. 57B App. 235'));

The output of this command will be:

array(4) {
	["additionToAddress1"]=>
	string(0) ""
	["streetName"]=>
	string(16) "Pallaswiesenstr."
	["houseNumber"]=>
	string(2) "57B"
	["houseNumberParts"]=> array(2) {
	    ["base"]=>
	    string(2) "57"
	    ["extension"]=>
	    string(1) "B"    
	}
	["additionToAddress2"]=>
	string(8) "App. 235"
}

Supported Address Formats

We try to support all address formats used world-wide. E.g., the address splitter will work no matter if the house number is given in front of or after the street name.

Here is a number of examples of addresses and how their splitted representation looks like:

Address line additionToAddress1 streetName houseNumber base extension additionToAddress2
56, route de Genève route de Genève 56 56
Piazza dell'Indipendenza 14 Piazza dell'Indipendenza 14 14
Neuhof 13/15 Neuhof 13/15 13 15
574 E 10th Street E 10th Street 574 574
1101 Madison St # 600 Madison St 1101 1101 # 600
3940 Radio Road, Unit 110 Radio Road 3940 3940 Unit 110
D 6, 2 D 6 2 2
13 2ème Avenue 2ème Avenue 13 13
Apenrader Str. 16 / Whg. 3 Apenrader Str. 16 16 Whg. 3
Pallaswiesenstr. 57 App. 235 Pallaswiesenstr. 57 57 App. 235
Kirchengasse 7, 1. Stock Zi.Nr. 4 Kirchengasse 7 7 1. Stock Zi.Nr. 4
Wiesentcenter, Bayreuther Str. 108, 2. Stock Wiesentcenter Bayreuther Str. 108 108 2. Stock
244W 300N #101 W 300N 244 244 #101
Corso XXII Marzo 69 Corso XXII Marzo 69 69
Frauenplatz 14 A Frauenplatz 14 A 14 A
Mannerheimintie 13A2 Mannerheimintie 13A2 13 A2
Kerkstraat 13-HS Kerkstraat 13-HS 13 HS
Poststr. 15-WG2 Poststr. 15-WG2 15 WG2
Hollandweg1A Hollandweg 1A 1 A
Poststr. 2 1/2 Poststr. 2 1/2 2 1/2
Breitenstr. 13/15/8/6 Breitenstr. 13/15/8/6 13 13/15/8/6
Österreicher Weg 12A/8/6 Österreicher Weg 12A/8/6 12 A/8/6
Schegargasse 13-15/8/6 Schegargasse 13-15/8/6 13 15/8/6

Unit Tests

The examples above and even more exemplary address lines are part of our unit tests. The unit tests can be run on the following site: https://regex101.com/r/vO5fY7/5

You can also run the tests via PHPUnit from the command line:

$ phpunit

If you don't have PHPUnit installed globally, run composer install first.

Further Information

The need for this functionality came up when we noticed that Shopware 5 does not contain individual fields for the street name and the house number anymore. Nevertheless, we needed to have these separated for our DHL Adapter, because the DHL API expects them to be passed individually.

More background information on how this implementation came together can be found in our blog post.

Adresstrennung

Dieses Projekt ermöglicht es, eine Adresszeile in Straßennamen und Hausnummer sowie weitere Angaben wie z.B. Gebäude- oder Appartmentinformationen zu trennen. Unterstützt werden eine Vielzahl an Adressformaten, wie sie weltweit verwendet werden. So ist es z.B. unerheblich, ob die Hausnummer auf die Straße folgt oder ihr voran steht.

License

viison/address-splitter is licensed under the MIT license. See the LICENSE file for more details.

address-splitter's People

Contributors

andrewisplinghoff avatar bcremer avatar cjuner avatar emilv avatar svenmuennich avatar windaishi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.