Help for this page

Select Code to Download


  1. or download this
     $singular_noun            # scalar
    
    ...
     $singular_noun{specific}  # hash, element
    
     sub verb{ ... }           # subroutine
    
  2. or download this
    my $pb    = HTML::TokeParser->new(\$content);
    my $regex = '^\d+$';
    ...
      $foo = $tb;
      last LABEL if $tb =~ /$regex/;
    }