in reply to cut of first char of a string
($_) = /.(.*)/s; # or $_ = substr($_, -length($_)+1); # or /./s and $_ = $'; [download]