Go to the first, previous, next, last section, table of contents.

$’: 最後のパターンマッチでマッチした文字列の後に続く文字列

$' : 最後のパターンマッチでマッチした文字列の後に続く文字列。

ブロックや現在のブロックで囲まれている eval の中のマッチは 全くカウントしていない。

覚え方:
`'' は引用文字列の後に来ることが多い。

(例)

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

Go to the first, previous, next, last section, table of contents.