From: soup_or_power on
Is there neq "not equal" operator in Perl?
I want to do something like this:

$a="mystring";
if ($a eq "abc") {
print "hello";
} elsif ($a neq "bcd") {
print "hello2";
}

From: Arne Ruhnau on
soup_or_power(a)yahoo.com wrote:
> Is there neq "not equal" operator in Perl?
> I want to do something like this:
>
> $a="mystring";
> if ($a eq "abc") {
> print "hello";
> } elsif ($a neq "bcd") {
> print "hello2";
> }
>

Is there documentation available on your system?

perldoc perlop

Arne Ruhnau