Help for this page

Select Code to Download


  1. or download this
    $fpcr = grep { /fpcr/ } @array ? 1 : 2;
    
  2. or download this
     
    $fpcr = (scalar grep { /fpcr/ } @array) ? 1 : 2;
    
  3. or download this
     
    grep { /fpcr/ } @array