foreach ( @alist ) { if ( condition( $_ ) ) { do_something( $_ ); } } #### foreach ( @alist ) { condition( $_ ) and do_something( $_ ) }