Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Verify Town Name

by cavac (Parson)
on Nov 30, 2021 at 13:31 UTC ( [id://11139268]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    use strict;
    ...
    
        return \%towns;
    }
    
  2. or download this
    #!/usr/bin/env perl
    
    use strict;
    ...
    
        $self->{towns} = \%towns;
    }
    
  3. or download this
    my $us_towndb = TownDatabase->new(file => 'towns_usa.dat');
    my $eu_towndb = TownDatabase->new(file => 'towns_eu.dat');
    
  4. or download this
    #!/usr/bin/env perl
    
    use strict;
    ...
        }
        close $ifh;
    }
    
  5. or download this
    my $towndb = TownDatabase->new();
    foreach my $region (qw[eu us au]) {
        $towndb->loadFile($region . 'towns.dat');
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11139268]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (1)
As of 2024-04-16 19:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found