basicdez has asked for the wisdom of the Perl Monks concerning the following question:
To read this in with read and seperate out the following fields so that in perl code, I could assign the following values..."DESTINATION" "localhost" "HDR" "R-ITEC" "" "ITDEC" "DEC" "PENDING" 08/29/01 18864 "EOS" "EOS"
Please help me if you know what I should do. I am currently under an understanding that I can do something of the following...$Destination = "localhost" $Program_Type = "R-ITEC" $Program_Name = "" $Incoming_Foo = "ITDEC" $Decision = "PENDING" $Date_Applied = "08/29/01" $Appl_Number = "18864"
to read in the data stream, but I do not know how to seperate these fields into where I would want them to go to complete this process. Any help you could give me would be greatly appreciated. peace dez Lwhile(<$cliendft>) { last if /^EOS$/; } close ($clientfd);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using the read function...
by thatguy (Parson) on Oct 08, 2001 at 21:04 UTC | |
|
Re: Using the read function...
by John M. Dlugosz (Monsignor) on Oct 08, 2001 at 20:48 UTC |