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.
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.
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:
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.