Hello,
I would like to simply insert a newline character at the end of each item in an array, being written to file. Does JMP not recognize '\n'? If so how would I get it to output
file1
file2
file3
rather than
file1\nfile2\nfile3
for(i=1,i<=length(Files),i++,
filestring=filestring|| " " || char(Files[i]) || "\n");
f=Save Text File(pypath || "argfile.txt",filestring,mode("replace"));
Thanks!