in reply to
removing first char of string
$string =~ s/^.//s;
This will also work:
substr ($string, 0, 1) = '';
Comment on
Re: removing first char of string
Select
or
Download
Code
In Section
Seekers of Perl Wisdom