Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Reading a File by Line then Analyzing each Line

by neniro (Priest)
on Jun 06, 2006 at 18:06 UTC ( [id://553880]=note: print w/replies, xml ) Need Help??


in reply to Reading a File by Line then Analyzing each Line

I suggest using a hash instead of plain variables:
#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my %questions; my $cur; while (<DATA>) { $cur = $1 if /^\d+\.\s*(.*)$/; $questions{$cur}->{selected} = $1 if $cur and /^[A-Z]+\.\s*(.*)\s+ +\*$/; s/\s*\*\s*$//; push @{$questions{$cur}->{answers}}, $1 if $cur and /^[A-Z]+\.\s*( +.*)\s*$/; } print Dumper \%questions; __DATA__ 1. What is my name? A. Rooney * B. Gerrard C. Ronaldo D. Ronaldinho 2. Who's your bet in the coming World Cup? A. Brazil * B. Germany C. England D. Cameroon

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-20 01:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found