Help for this page

Select Code to Download


  1. or download this
    my @arr = ('TEXT1','TEXT11','TEXT13','TEXT2','TEXT3');
    
  2. or download this
    my @newArr = ('TEXT1','TEXT2','TEXT3','TEXT11','TEXT13');
    
  3. or download this
    my @arr1;
    foreach my $val (@arr) {
    ...
        my $text = 'TEXT'.$val1;
        push @newArr, $text;
    }