M
Mike Flannigan
Got a pretty simple question for you'all. This matches the
number data shown below:
foreach (<DATA>) {
/^.+\s(\d+.\d+),\s-(\d+.\d+),.*$/;
print "$1 -- $2 \n";
push @array, $1, $2;
}
Now, just in case the single space is not before the numbers
like those shown below in DATA, I thought I'd put in a "?"
after the \s, and make it:
/^.+\s?(\d+.\d+),\s?-(\d+.\d+),.*$/;
it returns the $2 OK, but the $1 is only the last 3 digits of what
I expect. I expect
35.020041249 -- 94.3847918870
and get
249 -- 94.3847918870
What am I missing here?
__DATA__
TP,DMS, 35.020041249, -94.3847918870,12/31/1989,00:00:00,1
TP,DMS, 35.010973698, -94.3846837580,12/31/1989,00:00:00,0
TP,DMS, 35.002423715, -94.3837645520,12/31/1989,00:00:00,0
TP,DMS, 34.595735442, -94.3845292880,12/31/1989,00:00:00,0
TP,DMS, 34.594175007, -94.3845061190,12/31/1989,00:00:00,0
TP,DMS, 34.585702269, -94.3817021280,12/31/1989,00:00:00,0
TP,DMS, 34.575576402, -94.3814240620,12/31/1989,00:00:00,0
TP,DMS, 34.571204088, -94.3744192330,12/31/1989,00:00:00,0
TP,DMS, 34.561611241, -94.3742261350,12/31/1989,00:00:00,0
TP,DMS, 34.554861166, -94.3737394970,12/31/1989,00:00:00,0
TP,DMS, 34.552041565, -94.3726348980,12/31/1989,00:00:00,0
TP,DMS, 34.545121539, -94.3707114980,12/31/1989,00:00:00,0
TP,DMS, 34.544642592, -94.3654524020,12/31/1989,00:00:00,0
number data shown below:
foreach (<DATA>) {
/^.+\s(\d+.\d+),\s-(\d+.\d+),.*$/;
print "$1 -- $2 \n";
push @array, $1, $2;
}
Now, just in case the single space is not before the numbers
like those shown below in DATA, I thought I'd put in a "?"
after the \s, and make it:
/^.+\s?(\d+.\d+),\s?-(\d+.\d+),.*$/;
it returns the $2 OK, but the $1 is only the last 3 digits of what
I expect. I expect
35.020041249 -- 94.3847918870
and get
249 -- 94.3847918870
What am I missing here?
__DATA__
TP,DMS, 35.020041249, -94.3847918870,12/31/1989,00:00:00,1
TP,DMS, 35.010973698, -94.3846837580,12/31/1989,00:00:00,0
TP,DMS, 35.002423715, -94.3837645520,12/31/1989,00:00:00,0
TP,DMS, 34.595735442, -94.3845292880,12/31/1989,00:00:00,0
TP,DMS, 34.594175007, -94.3845061190,12/31/1989,00:00:00,0
TP,DMS, 34.585702269, -94.3817021280,12/31/1989,00:00:00,0
TP,DMS, 34.575576402, -94.3814240620,12/31/1989,00:00:00,0
TP,DMS, 34.571204088, -94.3744192330,12/31/1989,00:00:00,0
TP,DMS, 34.561611241, -94.3742261350,12/31/1989,00:00:00,0
TP,DMS, 34.554861166, -94.3737394970,12/31/1989,00:00:00,0
TP,DMS, 34.552041565, -94.3726348980,12/31/1989,00:00:00,0
TP,DMS, 34.545121539, -94.3707114980,12/31/1989,00:00:00,0
TP,DMS, 34.544642592, -94.3654524020,12/31/1989,00:00:00,0