Help for this page

Select Code to Download


  1. or download this
    $text="I have a problem with pre-compiled regex";
    @words=qw(have regex);
    ...
            print "Found $&\n";
        }
    }
    
  2. or download this
    $text="I have a problem with pre-compiled regex";
    @words=qw(qr/have/ qr/regex/);
    ...
            print "Found $&\n";
        }
    }