Help for this page

Select Code to Download


  1. or download this
    my($host, $port) = ( $ENV{"http_proxy"} =~ /^(\S+)\:(\d+)$/ );
    
  2. or download this
    if( $ENV{"http_proxy"} =~ /^(\S+)\:(\d+)$/ )
    {
      ($host, $port) = ($1, $2);
    }