node2:/root#perl aa.pl
$1 === nginxd
node2:/root#cat aa.pl
my $a='nginxdd';
if ($a =~/(nginx[^abc])/){print "$1 === $1
";};
node2:/root#perl aa.pl
$1 === nginxd
node2:/root#cat aa.pl
my $a='nginxdd';
if ($a =~/(nginx[^abc]+)/){print "$1 === $1
";};
node2:/root#perl aa.pl
$1 === nginxdd