perl中heredoc的使用解析
来源:爱站网时间:2018-12-28编辑:网友分享
爱站技术小编今日給您带来一篇perl中heredoc的使用解析,在成块打印文本的时候特别有用,正需要这方面知识点的同学千万不能错过喔!
爱站技术小编今日給您带来一篇perl中heredoc的使用解析,在成块打印文本的时候特别有用,正需要这方面知识点的同学千万不能错过喔!
格式
print <
EOF
复制代码 代码如下:
sub usage{
print <
-c config file
-f file name
-l number of lines
EOF
}
NOTE: the last EOF must start at the beginning of the line!!!
you can use other words instead of EOF
到这里,perl中heredoc的使用解析就介绍完成了,如果您还有什么不清楚可以留言给我,如果觉得我写得不错的话,请给我一个大拇指,谢谢!
上一篇:Perl使用chdir的示例代码