Help for this page

Select Code to Download


  1. or download this
    $str1 = "12345 ABC 987 MNO";
    $str2 = "      CDE";
    
  2. or download this
    $str = "12345 CDE 987 MNO";
    
  3. or download this
    my @arr1 = split //, $str1;
    my @arr2 = split //, $str2;
    ...
            }
    }
    print join "",@arr2,"\n";