Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: need help to create array dynamically

by clueless newbie (Curate)
on Jan 24, 2013 at 13:10 UTC ( [id://1015166]=note: print w/replies, xml ) Need Help??


in reply to need help to create array dynamically

Doesn't the data look close to a data structure already? A few regexes and an eval ...

#!/usr/bin/perl use Data::Dumper; use strict; use warnings; local $/; my $data=<DATA>; $data=~s{\[}{[qw(}sg; $data=~s{\]}{)],}sg; eval '$data=\['.$data.']'; warn Data::Dumper->Dump([\$data],[qw(*data)]).' '; __DATA__ [ abc def ] [ ghi jkl mno ]

and we have ...

$data = \\[ [ 'abc', 'def' ], [ 'ghi', 'jkl', 'mno' ] ]; at pmdata.pl line 13, <DATA> chunk 1.

Replies are listed 'Best First'.
Re^2: need help to create array dynamically
by Anonymous Monk on Jan 24, 2013 at 13:17 UTC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1015166]
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: (3)
As of 2024-04-24 21:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found