Help for this page

Select Code to Download


  1. or download this
    sub url_encode {
    my $rv = shift;
    ...
    $rv =~ s/\%([a-f\d]{2})/ pack 'C', hex $1 /geix;
    return $rv;
    }
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    $rv =~ s/\%([a-f\d]{2})/ pack 'C', hex $1 /geix;
    return $rv;
    }