Help for this page

Select Code to Download


  1. or download this
    use URI;
    my $my_url = 'http://www.perlmonks.org:8080/index.pl?whatever';
    my $uri = URI->new($my_url);
    my $host = $uri->host();
    
  2. or download this
    use URI;
    my $host = URI->new('http://www.perlmonks.org:8080/index.pl?whatever')
    +->host;