
japhy
Enthusiast
Sep 11, 2000, 10:32 PM
Post #2 of 2
(412 views)
|
In <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> "foo \"blat\" bar" </pre><HR></BLOCKQUOTE> the backslashes are there to escape the quotes. If you want a backslash to appear, you must put one in, and backslash it: <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> "foo \\\"blat\\\" bar" </pre><HR></BLOCKQUOTE> That would make the string appear, LITERALLY, as <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> foo \"blat\" bar </pre><HR></BLOCKQUOTE> ------------------ Jeff "japhy" Pinyan -- accomplished author, consultant, hacker, and teacher
|