Help for this page

Select Code to Download


  1. or download this
    use strict;
    my $text='Try to find the hidden string here!';
    if ($text=~m/\bhidden\b/) {
    ...
    else {
       print "No match, sorry.\n";
    }