Help for this page

Select Code to Download


  1. or download this
    $match = 'Ba';
    @array = ('Bad','Good','Whatever');
    
    if (grep(/$match/, @array)) { print "Yippie!\n"; }
    else { print "No Match\n"; }