Replies: 3 comments 3 replies
-
Hi @hkottmann - I'd like to clarify more on the steps taken. Would the following be correct?
If not, please help specify. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Dear Chris Sorry for my late answer. The *.csv file is created by one of my own written Software using Qt with C++ and MinGW 11.2.0-64Bit that we are using in our research environment. As per default and fits our needs, it's 8-Bit encoded and has therefor an 8-bit BOM on it's header (HEX EFBBEF) is an 8-Bit UTF-BOM. BTW, as rapidcsv is that much powerful and reliable, I've fixed in that way: Have many thanks for your great library... Kind regards, Han |
Beta Was this translation helpful? Give feedback.
-
Dear Kris Thank you for your great work, I've just tested it and it works fine. I wish you a nice weekend. Kind regards, Hans |
Beta Was this translation helpful? Give feedback.
-
I'm programming with Qt and included rapidcsv as it is the most efficient library to edit *.csv files. According to the documentation, I've defined HAS_CODECVT before I include rapidcsv.h in my program
`#ifndef HAS_CODECVT
#define HAS_CODECVT
#include "smartdcpd.h"
#include "ui_smartdcpd.h"
#include "rapidcsv.h"
`
But the BOM which was set by creating the document will be still removed by rapidcsv
Beta Was this translation helpful? Give feedback.
All reactions