Help for this page

Select Code to Download


  1. or download this
    @numbers = ('1','1','1','2','2','3','3','4','4','5','6');
    @strings = ('hello','you','tree','people','fun','sun','grass','love','
    +food','car','rabbit');
    
  2. or download this
    helloyoutree
    peoplefun
    ...
    lovefood
    car
    rabbit
    
  3. or download this
    
    for (my $i=0; $i< @numbers; $i++)    {
    ...
    my $j = join ('', @new_array);
    $j =~ s/\s+//;
    @new_array = split (/>+/, $j);