Let ss="10.0 20.0 30.0 90. 90. 90"

With Julia 3.x I could do this:
v = float64(split(ss))

With Julia 4.0 I had to change the code to:
v = [parse(Float64,s) for s=split(ss)]

Please advise, is there a more compact solution?

Reply via email to