http://www.perlmonks.org?node_id=75022


in reply to Triangle Golf

Instead of
split /[ ]+/, join '', <F>
You can also say: split /\s+/, join '', <F> or
undef $/; $_=<F>; split

Saves Just Another Character
"We are not alone"(FZ)