Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Array construct and foreach loop

by choroba (Cardinal)
on Apr 04, 2019 at 15:58 UTC ( [id://1232156]=note: print w/replies, xml ) Need Help??


in reply to Array construct and foreach loop

What you've shown is a string, i.e. a scalar, not an array. Using split can turn it into a list; you can populate an array with a list, or you can iterate over it directly:
#! /usr/bin/perl use warnings; use strict; my $string = 'abc def xyz'; # my @array = split ' ', $string; for my $part (split ' ', $string) { print "<$part>\n"; }
map{substr$_->[0],$_->[1]||0,1}[\*||{},3],[[]],[ref qr-1,-,-1],[{}],[sub{}^*ARGV,3]

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (7)
As of 2024-04-23 16:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found