How do I read in a text file line by line.
It is possible to read in a JSL Script line by line (actually JMP makes a list with each line as a list item) using the code below. myFile= open("$PATH\testScript.jsl");
myCfLines= myFile[scriptBox(1)] << getLines(); However, when I try to do this with a text file which has a '*.txt' extension JMP automatically opens this as a data table and so I cannot use this method to get the lines (as it's no...