Help for this page

Select Code to Download


  1. or download this
    $url =~ s/\?.*$//;
    
  2. or download this
    use URI;
    
    my $uri = URI->new($url);
    
    print $uri->scheme, '://', $uri->host, $uri->path, "\n";