Help for this page

Select Code to Download


  1. or download this
    do_something() if (grep /something/, @array);
    
  2. or download this
    foreach (@array){
        &do_something() and last if /something/;
    }