in reply to Re: cool way of manipulating array elementsin 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; [download]