- or download this
#! perl -slw
use strict;
...
__END__
P:\test>334482
test successfull
- or download this
if ( grep( /11/ || /are/, @text ) ) {
print "test successfull";
...
print "We messed something up again";
};
- or download this
if ( grep( /(11|are)/, @text ) ) {
print "test successfull";
...
else {
print "We messed something up again";
};