in reply to Re^4: howto strip the first char of a string?
in thread howto strip the first char of a string?

Colour me confused but isn't:

$_ = 'foo'; chop Reverse; print; __END__ fo

a complicated way of doing?:

$_ = 'foo'; chop; print; fo

Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
"Memory, processor, disk in that order on the hardware side. Algorithm, algorithm, algorithm on the code side." - tachyon