Help for this page

Select Code to Download


  1. or download this
    my $index = 0;
    for (my $i = 0; $i < 100; $i++) {
    ...
        my $fullname = sprintf "base_%04d", $index;
        printf "fullname = '%s'\n", $fullname;
    }
    
  2. or download this
    $last_4_chars = substr($my_string, -4);