Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: How to access each element in an array Perl

by three18ti (Monk)
on Jan 18, 2014 at 18:58 UTC ( [id://1071132]=note: print w/replies, xml ) Need Help??


in reply to Re: How to access each element in an array Perl
in thread How to access each element in an array Perl

Why not:
use Data::Dump; my $string = 'LarryWall'; my @array = split//, $string; dd @array;

(Data::Dump is just to show what's in the array)

Here's a oneliner doing the same thing

perl -MData::Dump -e 'my $str = 'LarryWall'; my @arr = split//,$str; d +d @arr;'

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (9)
As of 2024-03-28 12:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found