in reply to converting a hash to a string
open(F,">outfile") or die; while (($key,$value) = each %seg000) { print F $key , ":" , $value; } [download]