|
Prev: What are OOP's Jargons and Complexities?
Next: Compiling Perl modules on AIX using gcc instead of cc_r?
From: soup_or_power on 8 Jun 2005 11:37 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 8 Jun 2005 11:44
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 |