Sidebar

Can you give an example of a pre-process script that will remove the first line from a CSV file being processed?

0 votes
170 views
asked Feb 13, 2023 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]');

answered Feb 13, 2023 by brandon-w-8204 (33,270 points)
...