Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Clubbing array elements together:

by choroba (Cardinal)
on Jan 29, 2013 at 11:33 UTC ( [id://1015861]=note: print w/replies, xml ) Need Help??


in reply to Clubbing array elements together:

You can profit from the input record separator $/:
$/ = q(); while (<>) { s/\n//g; print "$_\n"; }
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^2: Clubbing array elements together:
by ;-) (Initiate) on Jan 29, 2013 at 16:49 UTC
    How do you wanna apply this on arrays?

    Though, I think you have the right idea, the array will most likely originate from a file-read.

    So it's obviously a XY Problem and should be solved directly.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-19 02:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found