----- Original Message -----
From: "Steve Few" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
> PROBLEM  -  unresolved error messages...
>
> $line= 1,6.944,"methane",29.6576,70617.28,"*BB",8533.32,2381.0883,0.21
> I use split (/,/,$line) to send each of the nine elements to an array.
>
> I get these errors or warnings from my KOMODO output. Are the quotes and
> '*' causing me problems? I don't know what the message below is warning
> me of.
>
> Any insight or help on processing $line above is welcome. I do have
> many, and processing time is not an issue. The files are small.
> Thanks in advance,  - Steve Few, NC DENR

I hope this helps a little:-

my
$line=qw(1,6.944,"methane",29.6576,70617.28,"*BB",8533.32,2381.0883,0.21);
my @array = split /,/, $line;
print "$_\n" for (@array);

-- results ---
1
6.944
"methane"
29.6576
70617.28
"*BB"
8533.32
2381.0883
0.21




_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to