hi, how can I read a tab deliminted txt file and convert to a table?
Page 1 / 1
Use the Text Reader.
Then split the text_line_data attribute using the AttributeSplitter (delimiter tab: \\t) adding the values to a list.
Use the ListExploder to create features per list element.
Write the features to a table.
See attached images:
Hi @myme, you can use the CSV reader with setting 'tab' to the 'Separator Character' parameter.
Hi @myme, you can use the CSV reader with setting 'tab' to the 'Separator Character' parameter.
Oh, This is a good way.