Hello,
i would like to extract some data with a script into a detailed table.
the raw data looks like the following example.
Positionen=957126 USA 1$ Indians Space Programm 2019 pfr. 20 1 1,6500 33,00
Positionen=
Positionen=829268 Litauen 2€ 30 Jahre EU-Flagge 2015 pfr 50 1 2,8000 140,00
Positionen=
Positionen=829055 Finnland 2€ Jean Sibelius 2015 pfr. 25 1 3,0000 75,00
Positionen=
…
The spaces between does not always have the same length, or width.
My idea is the following:
Get the rows behind “Positionen=” and then split this data with split(’ ').
The rows with only Positionen= would be ignored.
The resulting array from split would be added to the detailed table.
This is my idea so far, the question is, how do I implement this.
I thought about an extraction step, which marks the correct line (this realized in the datamapper).
But how do I extract the data from this line with javascript to a detailed table?
Many thanks for your answers.
NBecker