I want to use a regular expression to do the following:
$text =~ s/abc([.\s]+)abc/cba$1cba/g;
Essentially, I want to replace: abc(some text)abc
with: cba(some text)cba
So, I'm trying to use ([.\s]+) to move the (some text) into the substitution area with the standard $1.
However, this regex...