This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//blog post: https://simulinkforsoftwareengineers.blogspot.com/2023/11/handling-left-over-carriage-return.html | |
#include <iostream> | |
#include <string> | |
bool isCarriageReturn(const char c) { | |
return c == '\r'; | |
} | |
int main() { | |
std::string line = "\r1.2\r4.56"; | |
const uint32_t wordSize = 4; //length of characters in number | |
for (size_t i = 0; i < line.length(); i += wordSize) { | |
std::string word = line.substr(i, wordSize); | |
//std::cout << "Word: " << word; | |
//Text files created in Windows have line endings of '\r\n'. On Linux, getline() reads up to '\n' which leaves and extra '\r' at the end of line: | |
if (isCarriageReturn(word.front())) { | |
//std::cout << "*** here 1\n"; | |
i++; | |
word = line.substr(i, wordSize); | |
} | |
if (isCarriageReturn(word.back())) { | |
//std::cout << "*** here 2\n"; | |
word.pop_back(); | |
} | |
double number = std::stod(word); | |
std::cout << "number: " << number << std::endl; | |
} | |
return 0; | |
} |