In trying to read a line and convert it to variables my @scanf statement is giving unexpected (wrong) results. I am wondering if another set of eyes can pick out what I am doing wrong.
julia> using Scanf
julia> record4 = " 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 5.2706007E-02"
" 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 5.2706007E-02"
julia> n, uv1, uv2, uv3, uv4, uv5 = @scanf(record4, "%e15.7%e15.7%e15.7%e15.7%e15.7", Float64, Float64, Float64, Float64, Float64)
(1, 0.0, 0.0, 0.0, 0.0, 0.0)
julia>