in reply to Removing the first character from a variable

Timtowdi.
$foo= "string"; (undef, $foo)=split //,$foo,2; print $foo;
or
$foo= "string"; ($foo)=$foo=~/.(.*)/s; print $foo;
update changed to add /s in second example after bickering senslessly with wog.