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