F
felipe.garcia
Hi to all.
i am new and learning to do things with perl.
i need some help.
I have
59 0191 00010000 00000000 00000000 1 2 0 **/**/**** 01/25/2000
**/**/**** 40599.46 .00 .000 0 250000.00 .00 35000.00 .00
35000.00 .00 35000.00 .00 35000.00 .00 35000.00 .00
I need some type of fuction to get this code and put it in to an
arrary. i have this function
if (/ 59 0191 /) {
$seg59 = $_;
while (<DATA>) {
if (/^\s+/) {$seg59 = "$seg59$_"}
if (/^\d/) {last}
but if I display $seg59 only display the first line of the pagraph. I
need the whole pagraph to be input into $seg59. any suggestions?
thank you
i am new and learning to do things with perl.
i need some help.
I have
59 0191 00010000 00000000 00000000 1 2 0 **/**/**** 01/25/2000
**/**/**** 40599.46 .00 .000 0 250000.00 .00 35000.00 .00
35000.00 .00 35000.00 .00 35000.00 .00 35000.00 .00
I need some type of fuction to get this code and put it in to an
arrary. i have this function
if (/ 59 0191 /) {
$seg59 = $_;
while (<DATA>) {
if (/^\s+/) {$seg59 = "$seg59$_"}
if (/^\d/) {last}
but if I display $seg59 only display the first line of the pagraph. I
need the whole pagraph to be input into $seg59. any suggestions?
thank you