The plugin does not currently support substitution with the r flag
- that uses
$_, e.g.,
map { s/foo/bar/r } @list
which does not change the input
- and chained substitution, e.g.,
$foo =~ s/foo/bar/gr =~ s/(bar)+/baz/gr
which gives
(map { (my $__B_001 = $_) =~ s/foo/bar/g; $__B_001 } $foo)[0] =~ s/(bar)+/baz/gr
The plugin does not currently support substitution with the
rflag$_, e.g.,which does not change the input
which gives