in reply to Re: How do I search and replace a string with quotes
in thread How do I search and replace a string with quotes

$string =~ s/(?=abc="123")/ aabbcc/;
does the same as:
$string =~ s/(abc="123")/ aabbcc$1/;
which is not correct.