Help for this page

Select Code to Download


  1. or download this
    @s_dn = map { s/NUM/1/; $_ } @s_dn;
    
  2. or download this
    for( @s_dn )
    {
      my $num = 1; # calculate the local num, somehow.
      s/NUM/$num/g;
    }