Skip to main content

I have an attribute called text_lined_data that contains 6 data columns. How do i extract that information into 6 columns and line one as header?

Hi @mortenag,

Could you share this sample data?

Thanks,

Danilo


Are you reading a CSV file?

 

 


Instead of using a text reader, try using a CSV reader with the separator character set to ;.

If that's not possible, and the header is always consistent, you can skip the first feature, and use an attributeSplitter on the text_line_data, (;) and then manually rename the resultant list to the correct attribute names.


Reply