Sidebar

When creating a new CSV file using the new message statement, what do I put in the delimiter field for tab delimited?

0 votes
420 views
asked Nov 28, 2017 by gary-t-8719 (14,860 points)

1 Answer

0 votes
In QIE you can use the ASCII Non-Printable Control Character for the Horizontal Tab of 09 or the JavaScript speacial character of \t.

message = qie.createCSVMessage(true, '"', "09", 'UTF-8');
answered Nov 28, 2017 by gary-t-8719 (14,860 points)
...