Fuego.Io : Line

The Line component represents a line of a delimited file. Use the DelimitedFile component to open and iterate through the lines of a delimited file, and use the Line component to iterate through the fields of a line.

Example

In this example, the DelimitedFile component is used in conjunction with the Line component. The DelimitedFile component is used to open a file and iterate through each line of the file. An instance of Line represents a line, and is used to iterate through each field in the line.

fileA as DelimitedFile
fileA = DelimitedFile("c:/tmp/delimitedFile.txt")
for each row in fileA.lines do
    display row.field
    for each f in row.field do
        display f
    end
end
Related reference
Fuego.Io : DelimitedFile