perl-5.38.0
$*

$* was a variable that you could use to enable multiline matching. After a deprecation cycle, its magic was removed in Perl v5.10.0. Using it now triggers a warning: $* is no longer supported. You should use the /s and /m regexp modifiers instead.

$* は複数行マッチングを有効にするために使われていた変数です。 非推奨化の後、このマジックは Perl v5.10.0 で削除されました。 これを使うと警告を引き起こします: $* is no longer supported。 代わりに /s/m の正規表現修飾子を使うべきです。

Deprecated in Perl 5.

Perl 5 で非推奨となりました。

Removed in Perl v5.10.0.

Perl v5.10.0 で削除されました。