- $ACCUMULATOR
- $^A
-
The current value of the
write()
accumulator forformat()
lines. A format containsformline()
calls that put their result into$^A
. After calling its format,write()
prints out the contents of$^A
and empties. So you never really see the contents of$^A
unless you callformline()
yourself and then look at it. See perlform and "formline PICTURE,LIST" in perlfunc.format()
行のための、その時点でのwrite()
アキュムレータの値。 format には、$^A
に結果を残す、formline()
呼び出しが含まれます。 自分のフォーマットを呼び出した後で、write()
は$^A
の内容を出力してから消去します。 したがって、自分でformline()
を呼び出すのでなければ、$^A
の値が見えることはありません。 perlform と "formline PICTURE,LIST" in perlfunc を参照してください。