Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Troubles with simple parsing

by ikegami (Patriarch)
on Dec 19, 2004 at 02:34 UTC ( [id://415931]=note: print w/replies, xml ) Need Help??


in reply to Troubles with simple parsing

1) There are modules (search CPAN for "INI") that can help you here. Let's forget that given this is an excercise.

2) I don't think you want a hash. Don't you want a list (read array) of records (read hash)?

my @list; while (@art) { my $record = { "art" => shift(@art), "produce" => shift(@produce), "price" => shift(@prices), "descriptions" => shift(@descriptions), }; push(@list, $record); ) print("We have ", scalar(@list), " models for sale.\n"); print("\n"); print("They are:\n"); foreach (@list) { print("Model: ", $_->{"art"}, "\n"); print("Produced by: ", $_->{"produce"}, "\n"); print("Price: $", $_->{"price"}, "\n"); print("Desc: ", $_->{"descriptions"}, "\n"); print("\n"); }

Update: Typed printf where I should have typed print. Fixed

Replies are listed 'Best First'.
Re^2: Troubles with simple parsing
by uksza (Canon) on Dec 19, 2004 at 02:47 UTC
    hey!
    Thanks for your reply!

    1) Do you mean App::Serializer::Ini ?
    2) You're right!! I know it but I doesn't know how to do it ;-)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-24 07:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found