in reply to Re: dont consider if (......)
in thread dont consider if (......)

Is this you are expecting?
Example.
my $data=<STDIN>; if($data =~ /ipw\.r[^a-p][a-z]*/) { print "Match\n"; } else { print "Not Match\n"; }
OutPut
ipw.raasdfdsf Not Match ipw.raasdfdsf Not Match ipw.rgdfgsdfsd Not Match ipw.rrwgorga Match

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.