You are viewing the version of this documentation from Perl blead. This is the main development branch of Perl. (git commit 815d0d1337a0f328fa38b1a08c31a0c1a8253a1b)
$POSTMATCH
$'

The string following whatever was matched by the last successful pattern match. (See "Scoping Rules of Regex Variables"). Example:

local $_ = 'abcdefghi';
/def/;
print "$`:$&:$'\n";       # prints abc:def:ghi

See "Performance issues" above for the serious performance implications of using this variable (even once) in your code.

This variable is read-only, and its value is dynamically scoped.

Mnemonic: ' often follows a quoted string.