in reply to dealing with whitespace and using chop when reading delimited files

I might just use a regex:
my ( $quote, $time ) = /^\s*(\d+\.\d+)\s*,\s*(\d\d:\d\d:\d\d)/ or next +;
or something like that.
  • Comment on Re: dealing with whitespace and using chop when reading delimited files
  • Download Code