Sidebar
0 votes
335 views
by daniel-d-7319 (270 points)
Can you give an example of a pre-process script that will remove the first line from a CSV file being processed?

1 Answer

0 votes

You can remove the header row using the following:

message.removeFirstNode('*[0]');

by brandon-w-8204 (34.1k points)
...