Beefy Boxes and Bandwidth Generously Provided by pair Networks Joe
go ahead... be a heretic
 
PerlMonks  

Re: quotes in Perl

by bobf (Monsignor)
on Oct 21, 2004 at 17:10 UTC ( [id://401306]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to quotes in Perl

Very nice, concise overview. A couple of additional notes to keep in mind regarding here docs:

  • The end tag specifier must follow the << without any intermediate space.

    If the end tag is quoted explicitly (with either single or double quotes), spaces may be present:
    print << "ENDTAG"; # works print << 'ENDTAG'; # works print << ENDTAG; # syntax error!
  • Any leading spaces in the text of the here doc will be printed as such, which means using here docs in indented blocks gets messy:

    Non-indented code block
    print "printing here doc:\n"; print <<"ENDTAG"; This text has 0 leading spaces This text has 4 leading spaces ENDTAG OUTPUT: printing here doc: This text has 0 leading spaces This text has 4 leading spaces
    Indented code block (same output as above)
    { print "printing here doc:\n"; print <<"ENDTAG"; This text has 0 leading spaces This text has 4 leading spaces ENDTAG }
    But, if the printed text includes leading whitespace, spaces can be included as part of the end tag to clean up the code block:
    { print "printing here doc:\n"; print <<" ENDTAG"; This text has 4 leading spaces ENDTAG } OUTPUT: printing here doc: This text has 4 leading spaces
  • The Filter::Indent::HereDoc and Filter::HereDocIndent modules allow here docs to be used within indented code blocks without adding the leading whitespace from the indentation to the output.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://401306]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.