cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
lala
Level IX

How to use JSL to save an entire column of text content to a binary file?

for example

SH12
SA15

to

2023-11-23_20-26-20.png

Thanks!

1 REPLY 1
lala
Level IX

回复: How to use JSL to save an entire column of text content to a binary file?

Numeric files can be written as binary files with the following code.
But how to implement the text format?

fn=Save Text File("c:\test.blk",Matrix To Blob(dt:num<<getvalues,"int",4,"little"));

Recommended Articles