--- Neema Salimi <[EMAIL PROTECTED]> wrote:
I know you've already solved this on your own, but just a small note:

> if ($_ =~ /CA\s*ARG\s*1\s*(-*\d+\.\d+)\s*(-*\d+\.\d+)\s*(-*\d+\.\d+)/


the $_ =~ is unnecessary.
The match operator defaults to matching $_,
so saying 

   /foo/

is exactly equivelent to saying

  $_ =~ m/foo/

but with less line-noise. =o)



__________________________________________________
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

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

Reply via email to