HELLO printing in a double quote in .tsv file because of '#' like "#HELLO". I want to remove the double quotes when it writes to .tsv
current output -> "#HELLO"
expected output -> #HELLO
try ( CSVPrinter printer = new CSVPrinter(new FileWriter("data.tsv"), CSVFormat.TDF))
{
printer.printRecord("#HELLO");
}catch (IOException ex) {
ex.printStackTrace();
}