Help for this page

Select Code to Download


  1. or download this
    my $content = $response->content();
    my @content = "$content";
    
    my $introduction = grep (/Game Introduction - Marvel: Avengers Allianc
    +e/, @content);
    print "$introduction";
    
  2. or download this
    my $content = $response->content();
    my @content;
    ...
    
    my $introduction = grep( /Game Introduction - Marvel: Avengers Allianc
    +e/, $content[ 0 ] );
    print $introduction;
    
  3. or download this
    my $content = $response->content();
    
    my $introduction = grep( /Game Introduction - Marvel: Avengers Allianc
    +e/, $content );
    print $introduction;
    
  4. or download this
    my $content = $response->content();
    
    my $introduction = $content =~ /Game Introduction - Marvel: Avengers A
    +lliance/;
    print $introduction;
    
  5. or download this
    my @introduction = grep /Game Introduction - Marvel: Avengers Alliance
    +/, split /^/, $response->content();
    
    print @introduction;