Alaric Joseph Hammell wrote at Wed, 05 Jun 2002 20:47:55 +0200:
> Hello,
> I am new with perl and was hoping to get some direction.
>
> I am attempting to parse a the attached .txt file.
>
> i need to be able to access the information by unique keys, QUAD_NAME and
>USGS_QD_ID. Also, I wan
Uncertain if this is as big as it gets or what, but I tried this:
where %Myusgs is keyed from $USGS_QD_ID
[0] points to Quad name
[1] points to element of array holding input data
%Myquad is keyed from $QUAD_NAME
Well, I am no genius, but something like this should get you started. You'll
have to strip off the first line though for this to work.
#!/usr/local/bin/perl -w
use Data::Dumper;
open( INPUT, "landuse_filenames.txt" );
while( ) {
chomp;
( $FILE_NAME, $USGS_QD_ID, $QUAD_NAME, $ST
On Wed, Jun 05, 2002 at 02:47:55PM -0400, Alaric Joseph Hammell wrote:
> I am attempting to parse a the attached .txt file.
>
> i need to be able to access the information by unique keys, QUAD_NAME and
> USGS_QD_ID. Also, I want to be able to do a somewhat less exact access byt
> ST_NAME.
>
> I