You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
svenmuennich
added
bug
Issues that describe an unexpected behaviour in an existing functionality.
minor
"bug" issues that are neither "critical" nor "major".
labels
Mar 28, 2019
Given street:
D/5 The Esplanade
(Full Address: D/5 The Esplanade, Eastern Beach, Auckland 2012)
Current result:
array ( 'additionToAddress1' => '', 'streetName' => 'D/', 'houseNumber' => '5', 'houseNumberParts' => array ( 'base' => '5', 'extension' => '', ), 'additionToAddress2' => 'The Promenade', )
Expected result:
array ( 'additionToAddress1' => 'D/', 'streetName' => 'The Promenade', 'houseNumber' => '5', 'houseNumberParts' => array ( 'base' => '5', 'extension' => '', ), 'additionToAddress2' => '', )
The comma in the following line is breaking the expected result:
(?:(?P<A_Addition_to_address_1>.*?),\s*)? # Addition to address 1
The text was updated successfully, but these errors were encountered: