Skip Menu |

This queue is for tickets about the Geo-StreetAddress-US CPAN distribution.

Report information
The Basics
Id: 124919
Status: new
Priority: 0/
Queue: Geo-StreetAddress-US

People
Owner: Nobody in particular
Requestors: NHORNE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.04
Fixed in: (no value)



Subject: "N CENTER ST" as in "North Center Street"
Calls the street "N", the type as 'Ctr' and the city as 'ST WESTMINSTER'. $ cat test #!/usr/bin/env perl use Geo::StreetAddress::US; use Data::Dumper; if(my $href = Geo::StreetAddress::US->parse_address('400 N CENTER ST WESTMINSTER MD')) { print Data::Dumper->new([\$href])->Dump(); } $ ./test $VAR1 = \{ 'state' => 'MD', 'street' => 'N', 'type' => 'Ctr', 'number' => '400', 'city' => 'ST WESTMINSTER' };