我在这里遇到一个问题,这让我很难过。所以,我必须阅读以下格式的内容[请同时阅读正文,以更好地理解我的问题]:
TITLE
The text is actually from a file being redirected
to input stream via piping in linux bash. I cannot
use ifstream or anything other than some form of cin,
of which I believe getline to be the most useful.
etc.
具体来说,让我感到困难的是 TITLE 和正文之间的空白。我似乎想不出一种使用 getline(cin,string) 来解决这个问题的方法。
我想出的最好的:
while(inputString.size() != 0)
getline(cin,inputString);
//process string
... 与上述空白行一起被抛出窗口。
有什么想法吗,伙计们?
谢谢!