perl-5.38.0
$LIST_SEPARATOR
$"

When an array or an array slice is interpolated into a double-quoted string or a similar context such as /.../, its elements are separated by this value. Default is a space. For example, this:

配列や配列スライスがダブルクォートされた文字列あるいは /.../ のような 同様のコンテキスト展開されたとき、その要素はこの値で分割されます。 デフォルトは空白です。 例えば、以下のものは:

    print "The array is: @array\n";

is equivalent to this:

以下と等価です:

    print "The array is: " . join($", @array) . "\n";

Mnemonic: works in double-quoted context.

記憶法: ダブルクォートされた内容に対して動作します。