1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
319 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)
...