Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $string = "catfood";
    $string = substr($string,3,4);
    print "$string\n";
    
  2. or download this
    my $new_string = substr($string,3,4);