- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Save the following as txt with JMP?
How can save txt files without excess "
#title=""
#tooltip="[",2052
#icon="I:\ABC\[.ico"
Thanks!
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Save the following as txt with JMP?
You could get the values into a list, convert it to a string and then save that
Names Default To Here(1);
dt = New Table("Untitled",
Add Rows(3),
Compress File When Saved(1),
New Column("Col",
Character,
"Nominal",
Set Values({"#title=\!"\!"", "#tooltip=\!"[\!",2052", "#icon=\!"I:\ABC\!\[.ico\!""})
)
);
vals = dt[0, 1];
str = Concat Items(vals, "\!N");
Save Text File("$TEMP/test.txt", str);
wait(0);
Web("$TEMP/test.txt");
-Jarmo
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: Save the following as txt with JMP?
This result is incorrect.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Save the following as txt with JMP?
You could get the values into a list, convert it to a string and then save that
Names Default To Here(1);
dt = New Table("Untitled",
Add Rows(3),
Compress File When Saved(1),
New Column("Col",
Character,
"Nominal",
Set Values({"#title=\!"\!"", "#tooltip=\!"[\!",2052", "#icon=\!"I:\ABC\!\[.ico\!""})
)
);
vals = dt[0, 1];
str = Concat Items(vals, "\!N");
Save Text File("$TEMP/test.txt", str);
wait(0);
Web("$TEMP/test.txt");
-Jarmo