Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^8: Quote and Quote-like Operators (here-docs break)

by tye (Sage)
on Dec 16, 2011 at 23:09 UTC ( [id://944027]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    ( my $string= q{
        ...
    } ) =~ s/(?=^|(\n))\n[^\S\n]+/defined $1 ? "\n" : ''/ge;
    
  2. or download this
        $db->select(
            [ "this", "that", "theother", "COUNT(*) as things" ],
    ...
            "LIMIT $size OFFSET $skip",
            "HAVING 1 < count(*)",
        );
    
  3. or download this
        $db->prepare( join ' ',
            "SELECT", join( ', ',
    ...
            "LIMIT $size OFFSET $skip",
            "HAVING 1 < count(*)",
        );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://944027]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (8)
As of 2024-04-23 17:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found