C:\>perl #!/usr/bin/perl use warnings; use strict; my $string = "1234567890"; print substr($string,5); ^Z 67890 C:\>