Help for this page

Select Code to Download


  1. or download this
    my $as_string = 'startKEY=jdjhjfg8y4uh449845&finish';
    $as_string =~ /KEY=([^&]+)\&/;
    print $1, "\n";
    
  2. or download this
    use strict;
    use URI;
    ...
    
    my %pair = $uri->query_form();
    print $pair{startKEY}, "\n";