Help for this page

Select Code to Download


  1. or download this
    my @data = $text =~ /foo(.*?)bar/g;
    manipulate($_) foreach (@data);
    
  2. or download this
    manipulate($_) for (@{[$text =~ /foo(.*?)bar/g]});