Prev: FAQ 4.38 Why don't my <<HERE documents work?
Next: FAQ 7.24 How can I catch accesses to undefined variables, functions, or methods?
From: Xho Jingleheimerschmidt on 5 Jun 2010 01:12 Peng Yu wrote: > I think that the document for \ can be found in man perlop. But there > are too many '\'s, and I don't find where the description of backslash > operator is. Would you please point me which section to look at? Or > '\' is discussed in some other man page? It is both the 1st and the 6th backslash in perlop (my version, of course, can't speak for yours). Symbolic Unary Operators ..... Unary "\" creates a reference to whatever follows it. See perlreftut and perlref. Do not confuse this behavior with the behavior of back- slash within a string, although both forms do convey the notion of pro- tecting the next thing from interpolation. Xho |