in reply to Re^2: multiple matches per line *AND* multiple capture groups per match
in thread multiple matches per line *AND* multiple capture groups per match
Update: well, thinking again about what I wrote above, m// and s/// are in fact part of the quote and quote-like operators (so Ken's answer said it all), but I just wanted to point out that this can be done in direct regex constructs.$ perl -e 'print $1 if "foobar" =~ m{f(oo)ba}' oo $ perl -e 'print $1 if "foobar" =~ m#f(oo)ba#' oo
|
|---|