Help for this page

Select Code to Download


  1. or download this
    my @content = map {$_->content} @responses;
    
  2. or download this
    my @content = map { escape_html(convert_newlines($_->content)) } @resp
    +onses;
    
  3. or download this
    my @content = map {
        my $content = $_->content;
    ...
    
        $content;
    } @responses;
    
  4. or download this
    my $parts = [ 'Part1', 'Part2','Part3' ];
    my $newLoop;
    ...
                               : ()
                        }} @$parts ];