Help for this page

Select Code to Download


  1. or download this
    my $str = 'nodes0005';
    substr($str,3,2,'AB');
    ...
    nodAB005
    
    #   as required.
    
  2. or download this
    my $str = 'nodes0005';
    my @chars = split //, $str;  # Split the string into an array.
    ...
      }
    }
    print $out;