in reply to Re: Chopping the beginning of a string?
in thread Chopping the beginning of a string?

I prefer the 4-arg substr for this case:

my $firstChar= substr($string,0,1,"");
Because:

                - tye