Question

hi, how can I read a tab deliminted txt file and convert to a table?

  • 22 July 2016
  • 3 replies
  • 20 views

hi, how can I read a tab deliminted txt file and convert to a table?

3 replies

Userlevel 2
Badge +12

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:

Userlevel 2
Badge +17

Hi @myme, you can use the CSV reader with setting 'tab' to the 'Separator Character' parameter.

Badge

Hi @myme, you can use the CSV reader with setting 'tab' to the 'Separator Character' parameter.

Oh, This is a good way.

Reply