http://www.perlmonks.org?node_id=1090445


in reply to Re^2: Using Look-ahead and Look-behind
in thread Using Look-ahead and Look-behind

I changed the sub TestEquity to allow for any text between Private and Equity, but I can't get it to work. What have I done wrong?

sub TestEquity { return 1 if $_[0] =~ m/(?<!private).*equity/; return 0; }