Continue reading "Adding Delimiters Between String Elements in C++"
Adding Delimiters Between String Elements in C++
A system I'm working on involves collecting data and logging it to an SD card in a CSV-like file format. Each line is formatted with a start-of-line character (STX) and an end-of-line character (ETX), and fields within the message are separated by delimiting character (DELIMITER, in this case, ). Formatted log lines are being manually …
