On 2001-08-06 05:36:24Z, Tomasz Wegrzanowski <taw / users.sourceforge.net> wrote:
> How to do this:
>     $str =~ s/a(b)c(d)e/func($1,$2)/eg;
> in Ruby ?

With String#gsub!