This means that your line is a string of numbers separated by commas.
for example: "12.34,45.0,67.1"
line.split(",") returns an array of strings.
for example: {"12.34","45.0","67.1"}
line.split(",")[1] returns the 2nd value (since indexes start at 0) of an array element.
e.g. 45.0
source share