TXT file with data seperated by a TAB

Basicly title.

Now the data is seprated by a KOMMA, but i need the to be seprated by a TAB.
I use the Data.ExportCSV node to create the TXT.

@bvs1982 ,


KR
Andreas

2 Likes

Assuming you have a two dimensional list (a list containing lists of values), use the String.Join node to create a list of strings separated by a tab. Then use another String.Join to join the list of strings into a single string. Finally use a FileSystem.WriteText node to write the content to disc.

Looks like this:

3 Likes

Thanks to you both! I was overthinking things.

Have to give Jacob the solution this time as this was closed to what i am after.

1 Like