in reply to Problem w/ single-quoted strings
I don't know about clear it up, but it looks to me that the text and the behavior do not match. The text more clearly describes what happens in quoted strings, not what happens in single quoted strings as this example shows:
result:print '\ \\ \\\ \\\\ \\\\\ '; print "\n"; print "\ \\ \\\ \\\\ \\\\\ "; print "\n";
\ \ \\ \\ \\\ \ \ \\ \\
As you can see in the quoted string "\ " displays a space while in the single quotes it displays itself. Thus the backslash does not appear to always be an exception to the every char stands for itself rule. What it stands for appears to depend on what follows it. And sometimes it appears to stand for itself.
perl, v5.8.1-RC3 built for darwin-thread-multi-2level
In Section
Seekers of Perl Wisdom