Search Results

3
votes

What’s the point of Perl’s map?

You use map to transform a list and assign the results to another list, grep to filter a list and assign the results to another list. The "other" list can be the same variable as the list you are t …
1
vote

Why is the list my Perl map returns just 1’s?

As mentioned, s/// returns the number of substitutions performed, and map returns the last expression evaluated from each iteration, so your map returns all 1's. One way to accomplish what you want …