Help for this page

Select Code to Download


  1. or download this
      /($<foo>.*)/
    
  2. or download this
      ?foo=bar;
    
  3. or download this
    
      ?foo=bar;baz=bop
    
  4. or download this
    
      ?foo=(.*);
    
  5. or download this
    
      /view/(?<foo>\w+)/
    
  6. or download this
      /view/(?<foo>)/
    
  7. or download this
      use URL::Deconstruct;
      
    ...
          print "$params{model}\n";    # beer
          print "$params{order_by}\n"; # 11
      }
    
  8. or download this
    package URL::Deconstruct;
    use strict;
    ...
    later on decode what was actually wanted...
    
    =cut