in reply to Re^2: cool way of manipulating array elements
in thread cool way of manipulating array elements

If you want to modify the original array contents then you could modify BioLion's code thus:

$_ *= 2 for grep {looks_like_number($_)} @array;
True laziness is hard work