my $line = "abcdefghijk"; # delete the first 3 characters: substr($line, 0, 3) = ''; print $line; # "defghijk"