##
while ($text =~/foo(*.?)bar/) {
manipulate ($1)
}
####
while ($text =~/foo(*.?)bar/g) {
manipulate ($1)
}
####
while ($text =~/\Gfoo(*.?)bar/g) {
manipulate ($1)
}
####
($text =~/foo(*.?)bar/g)
manipulate ($1);
while ($text =~/\Gfoo(*.?)bar/g) {
manipulate ($1)
}