in reply to Remove leading character from string
$value = substr($value, 1); # or substr($value, 0, 1) = ''; [download]
$value =~ s/^.//; [download]