in reply to Remove leading character from string

There are many ways to do this -

1) Use substr...
$value = substr($value, 1); # or substr($value, 0, 1) = '';

2) Use regular expression...
$value =~ s/^.//;