http://qs321.pair.com?node_id=303027


in reply to Chopping the beginning of a string?

my $str = 'abcdef'; $str = $1 if $str =~ m/^.(.*)$/;

use perl;