grep {$_ *= 2} : grep « Regular Expression « Perl






grep {$_ *= 2}

     

@array1 = (1, 1, 1, 1);
@array2 = grep {$_ *= 2} @array1;
print @array1[1];

   
    
    
    
    
  








Related examples in the same category

1.grep value
2.grep with regular rxpression
3.Using grep function
4.Using grep to remove word
5.Using grep with expression
6.Using grep with the file-test operators.
7.The grep function evaluates the expression (EXPR) for each element of the array (LIST).
8.grep function with regular expression