Export adds 3 unexpected characters at beginning of output file

Hello,

Here is a simple example of instructions I am using for exportation

$filename(txt,utf-8)$loop(%_path%)%title%
$loopend()

This creates a simple text file with one line per file in directory with just the title printed out.
The issue is that three unexpected characters are added at the very beginning of first line.
See for example the ascii dump of the 1st line of a file I just generated :
0000000 o ; ? K i n d e r t o t e n l i
Same dump in hexadecimal :
0000000 bbef 4bbf 6e69 6564 7472 746f 6e65 696c

These extra characters are just messing up post processing or printing the file.

Any idea how to avoid this ?

Thanks

Does this 3 character change, if you try it with

$filename(test.txt)
$filename(test.txt,ansi)
$filename(test.txt,utf-16)

As seen in

1 Like

ansi is the correct setting. Many thanks !

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.