Login
Register
Home
Q&A
Questions
Tags
Send feedback
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
138
views
asked
Feb 13
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?
preprocess
csv
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
1 Answer
0
votes
You can remove the header row using the following:
message.removeFirstNode('*[0]');
answered
Feb 13
by
brandon-w-8204
(
33,030
points)
Please
log in
or
register
to add a comment.
...