Help for this page

Select Code to Download


  1. or download this
       
       while (<FH>) { print if $_ =~ /start/../end/ }
    
  2. or download this
       
       if (101 .. 200) { print; }
    
  3. or download this
     
       if ($. == 101 .. $. == 200) { print; }