Tagged Questions
4
votes
5answers
1k views
C++ portable end of line
is there any way to automatically use correct EOL character depending on the OS used?
I was thinking of something like std::eol?
I know that it is very easy to use preprocessor directives but ...
4
votes
1answer
1k views
How do I parse end-of-line with boost::spirit::qi?
Shouldn't a simple eol do the trick?
#include <algorithm>
#include <boost/spirit/include/qi.hpp>
#include <iostream>
#include <string>
using boost::spirit::ascii::space;
using ...
1
vote
4answers
43 views
How to change EOL coding in txt files?
I am writing in Visual Studio 2008 in C++ and I have problems with other libraries - they do not accept the line endings (EOL) I generate with my txt files.
How can I change that while writing a file ...
1
vote
1answer
1k views
Using boost::spirit, how do I require part of a record to be on its own line?
I have a record parser that throws one of several exceptions to indicate which rule failed.
Front matter:
#include <iostream>
#include <sstream>
#include <stdexcept>
#include ...
0
votes
2answers
2k views
c++ ifstream, detect if letter or EOLine?
I have this function to read in all ints from the file.
The problem is when i read letters i trigger a new line and i always seek by 1 and not to the end of line. How can i write this function better?
...