Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jmeter adds extra characters  when reading from a csv

Tags:

csv

jmeter

I'm reading some values from a csv like this:

enter image description here

But I'm getting some strange extra characters at the beginning of the ID value like this: enter image description here

The CSV file is just an id, a name and line breaks. Why do I get these other characters?

like image 577
item5 Avatar asked Sep 20 '25 13:09

item5


1 Answers

The specific characters you see ( or EF BB BF in hex) are Byte order mark for UTF-8. So it is coming from your CSV file, likely somehow added on saving the file. So try to set File encoding parameter to UTF-8, it should help.

like image 92
ytrewq Avatar answered Sep 23 '25 16:09

ytrewq