JSL Saving txt files with Windows end of line ( EOL CRLF )
I have a string which I want to save with end of line compatible with Windows (CRLF EOL).How or when can I specified such thing? names default to here(1);
clear log();
my_string = "\[Hello
""
World!]\";
show(my_string);
Write(my_string);
// prints in JMP Log
// "Hello
// ""
// World!"
saveTextFile("$desktop/my_text.txt", my_string );
This is the desired outpu...
// See output in Notebook++ below