in reply to Re^2: Reading values from one .csv, searching for closest values in second .csv, returning results in third .csv?
in thread Reading values from one .csv, searching for closest values in second .csv, returning results in third .csv?

Your $end probably contains newline (I split on ' ', which removed it, you split on a comma). Just
chomp $end;
before printing it.
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ
  • Comment on Re^3: Reading values from one .csv, searching for closest values in second .csv, returning results in third .csv?
  • Download Code

Replies are listed 'Best First'.
Re^4: Reading values from one .csv, searching for closest values in second .csv, returning results in third .csv?
by pickleswarlz (Initiate) on Feb 27, 2013 at 20:53 UTC
    Brilliant, works perfectly! Thanks!