William Martell wrote:
> 
> Hello Group,

Hello,

> I am trying to get this code to run. I got it from the book
> Data Munging with Perl. I cut and pasted the code, then changed
> the input from stdin to FILE. I supplied a text file for the
> passwords (I am on a Windows 2k box). But I can't get it correct.
> I think the line @[EMAIL PROTECTED]) = split(/:/); is incorrect
                       ^       ^
Yes it is incorrect.  You have a left brace and a right parenthesis when
it should be left and right braces.

@rec{ @fields } = split /:/;

> syntactically but I could be wrong. Could anyone help me
> understand this problem. Thanks in Advance!


John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to