#!/usr/bin/perl
use strict;
use warnings;
my $name = 'Foo';
my $message = <<'END_MESSAGE';
Dear $name,
this is a message I plan to send to you.
regards
the Perl Maven
END_MESSAGE
print $message;
...结果:
Dear $name,
this is a message I plan to send to you.
regards
the Perl Maven
5条答案
按热度按时间kuarbcqp1#
正常报价:
Here-docs允许你定义任何一个标记作为引用文本块的结尾:
正则表达式样式的引号操作符允许您使用几乎任何字符作为分隔符--就像正则表达式允许您更改分隔符一样。
vfh0ocws2#
Perl在语法上没有明显的垂直空格,因此您可以
它相当于
kuuvgm7e3#
是的,这里的医生。
wb1gzix04#
简单示例
...结果:
参考:http://perlmaven.com/here-documents
btqmn9zl5#
是的,您有2个选项:
2.qq()参见示例: