Perl Programming/Keywords/grep
The grep keyword
editThe grep function Evaluates the BLOCK or EXPRESSION for each element of LIST by setting locally $_ to each element, and returns the list value consisting of those elements for which the expression evaluated to true. In scalar context, it returns the number of times the expression was true.
Syntax
edit grep BLOCK LIST
grep EXPRESSION, LIST