Hi all,
(JMP Pro 17 user) I am running into a strange issue where escape characters don't work in JSL, specifically within Application Builder.
This works:
// Example:
Python Submit("print(dt1)");
This does not work:
// Example:
Python Submit("\[print (dt1)]\");
// this is what I want to use it with, statement is impossible without escape characters:
Python Submit("\[
dt1 = dt1[~dt1["Column 1"].str.contains("#")]
]\");
When it works, it prints the data table associated with dt1, but when escape characters are placed, this is the log output (just repeats what's within the escape characters):
/**********/
print (dt1)
/**********/
I'm not sure what is going wrong here, perhaps a syntax error on my end?