Help for this page

Select Code to Download


  1. or download this
    my %searchs = (
        stringa => sub { print "matched on stringa\n"; },
    ...
            }
        }
    }
    
  2. or download this
    while (<DATA>) {
        chomp;
    ...
        /patternb/ && print "regex on string b\n";
        /patternc/ && print "C match\n";
    }