In Perl both grep and map take an expression and a list, and evaluate the expression for each element of the list.
What is the difference between the two?
|
|
|
|
|
|
|
The first example prints all the odd elements of the list, while the second example prints a 0 or 1 depending on whether the corresponding element is odd or not. |
||||
|
|
|
I find that it's helpful to think think about
|
||
|
|
|
|
One other thing about
Edit: Since the OP asked in a comment, I should say that you can use |
||||||
|
|
|
Think of grep as map with a filter. map iterates and provides an opportunity to do something with every item. For example these two lines are equivalent:
Similarly, these two are equivalent:
grep provides the ability to insert a conditional, and therefore becomes a filter. |
||
|
|
|
|
|
||
|
|