In lack of better solution, you could remove all spaces while reading the csv file using this trick from @GunnarFarneback:
CSV.File(IOBuffer(replace(read(csvfile, String), " " => "")), missingstring = "", types = [Int, Int, Int])
In lack of better solution, you could remove all spaces while reading the csv file using this trick from @GunnarFarneback:
CSV.File(IOBuffer(replace(read(csvfile, String), " " => "")), missingstring = "", types = [Int, Int, Int])