Help for this page

Select Code to Download


  1. or download this
    foreach (@array) {
      $_= '<tag>' . $_ . '</tag>'
    }
    
  2. or download this
    my @newarray= map { '<tag>' . $_ . '</tag>' } @array;