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