10-07-2020 02:38 PM
I’m using the Fixed Width Formatter snap to create a .txt file with one line in it, but it always writes the file with one extra blank line at the end.
I tried adding the Head snap using 0 offset, 1 number of documents and tried 1 offset, 1 number of documents. Still didn’t work. Does anyone know how to prevent the one extra blank line?
10-07-2020 08:26 PM
That’s just the way the Preview works. If you write the output to a file and download it, you’ll find it really only has one line.
10-08-2020 05:21 AM
10-08-2020 01:56 PM
Again, that’s just the way a text editor shows a file with one line that ends with a newline. It’s allowing you to enter more text for line 2.
The unix wc utility agrees that your file is one line:
$ wc -l test_header.txt
1 test_header.txt
If you do a hexdump of your file, you’ll see only one newline character (0a), at the very end:
10-13-2020 08:05 AM
Got it. Thanks for your help here, really appreciate it. Love this community :+1: