Here Documents
If you want to quote many lines of text literally, you use the "Here Document" notation which consists of an introductory line which has two open angles followed by a keyword, the
end tag, for signalling the end of the quote. All text and lines following the introductory line are quoted. The quote ends when the
end tag is found, by itself, on a line. For example, the end tag is "EOT":
<font size="-1">#!/usr/bin/perl -w
use strict;
my $foo = 123.45;
my $bar = "Martha Stewedprune";
print <<"EOT";
=====
This is an example of
text taken literally
except that variables are
expanded where their
variable names appear.
foo: $foo
bar: $bar
EOT
This example, when run, produces the following:
=====
This is an example of
text taken literally
except that variables are
expanded where their
variable names appear.
foo: 123.45
bar: Martha Stewedprune
They way you quote, the end tag is important: like their regular quote counterparts, double-quotes allow expansion of variables and special characters, single quotes don't allow expansion. You may also have a bare, unquoted, end tag; this is equivalent to a double quote, i.e., expansion expansion.
Some warnings:
- The end tag specifier must follow the << without any intermediate space.
- The actual end tag must be exactly the same as in the introduction line.
- Don't forget that the introduction line must end with a semicolon, just like any other perl statement.
The here document is particularly useful when embedding HTML in Perl because it increases the readability of the HTML. The quote character is printed out without any escapes. For example:
my $url = "http://www.maperl.com";
my $text = "Mother of Perl";
print <<"EOT";
<a href="$url">$text</a>
EOT
Prints just what we would hope:
<a href="http://www.maperl.com">Mother of Perl</a>
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, details, 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, summary, 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.