Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
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 avoiding work at the Monastery: (6)
As of 2024-04-18 13:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found