Help for this page

Select Code to Download


  1. or download this
    grep { /x/ } @source;
    
  2. or download this
    grep( /x/, @source );
    
  3. or download this
    grep /x/, @source;
    
  4. or download this
    grep { my $x = $_;
           $x =~ s/\D//g;
           my $y = f( $x );
           ( $y > $x ) } @source;
    
  5. or download this
    grep s/\D//g && f( $_ ) > $_, @source;