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

$_ : 入力およびパターン検索におけるデフォルト

$_ : 入力およびパターン検索におけるデフォルト。

次の式のペアはそれぞれ等価である。

while (<>) { ...     # only equivalent in while!
while ($_ = <>) { ...

/^Subject:/
$_ =~ /^Subject:/

y/a-z/A-Z/
$_ =~ y/a-z/A-Z/

chop
chop($_)

覚え方:
? ( underline is understood in certain operations.)


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