Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: using strict

by muba (Priest)
on Mar 22, 2004 at 20:56 UTC ( [id://338765]=note: print w/replies, xml ) Need Help??


in reply to using strict

It has all to do with scoping. my declares a variable for the current scope. Basicly, a scope is a part of code between { and }. Or at least, that is how I understand it. Please, monks, correct me if I'm wrong.

But, with this information, it's pretty clear why your code is not working:
... if (/^##recstart/) { my ($junk,$recno) = split; # $recno declared for this block $recno =~ s/'//g; } elsif (/^##v/) { my ($junk,$qno,$junk2,$vtext) = split (/ /,$_,4); # both $qno and $vtext declared for this block $qno =~ s/'//g; $vtext =~ s/'//g; } else { # nothing declared at all for this else block print OUT "$recno^$qno^$vtext"; } }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-23 21:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found