Contributed by Anonymous Monk
on Aug 11, 2000 at 17:49 UTC
Q&A
> strings
Answer: How do I print a quotation-mark? contributed by merlyn For all stringish things, putting a
backslash in front of the closing delimiter
reduces it to ordinary character status:
my $string = "He said, \"That's a lie!\"";
| Answer: How do I print a quotation-mark? contributed by turnstep Use some other string delimter, such as single quote (') or qq (as in qq(...) or qq/.../):
print qq[And vroom said "Let there be nodes!" and there were nodes.\n]
+;
Use a "here-document" syntax:
print <<"WALDO";
"Where is Waldo?" asked the creature?
It replied "On the next line!"
WALDO
| Answer: How do I print a quotation-mark? contributed by nardo You could also enclose it in single quotes. | Answer: How do I print a quotation-mark? contributed by toolic If you just need a quote character all by itself, you can make one using the chr function:
Use the ASCII code for the double quote character ("). With chr:
print chr(34);
my $quot = chr(34);
print "This is ${quot}not$quot a quote.\n";
Use the octal or hexadecimal escape code:
print "\042";
print "\x22";
|
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|