Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: How to access each element in an array Perl

by elTriberium (Friar)
on Jan 18, 2014 at 18:31 UTC ( [id://1071123]=note: print w/replies, xml ) Need Help??


in reply to How to access each element in an array Perl

Adding to the other comments if you really want to make this an array then use spaces between the letters, this is the delimiter for "qw" elements:

my @array = qw(L a r r y W a l l);

Replies are listed 'Best First'.
Re^2: How to access each element in an array Perl
by three18ti (Monk) on Jan 18, 2014 at 18:58 UTC
    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://1071123]
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: (7)
As of 2024-04-18 07:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found