Help for this page

Select Code to Download


  1. or download this
    while (<ARGV>) {
       print if /some_regexp/;
    }
    
  2. or download this
    print "$1 $2 (..etc)\n" if /some regexp with captures/;