perl-5.38.0
$PREMATCH
$`

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

最後の成功したパターンマッチでマッチした部分の前の文字列。 ("Scoping Rules of Regex Variables" を参照してください)。

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

この変数を(一度でも)使うことによる重大な性能の問題については前述した "Performance issues" を参照してください。

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

この変数は読み込み専用で、その値は動的スコープを持ちます。

Mnemonic: ` often precedes a quoted string.

記憶法: ` は多くの場合クォートされた文字列の前にある。