gpt4 book ai didi

c++ - 我无法向 C++ 字符串添加新行

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:08:38 26 4
gpt4 key购买 nike

如何向 C++ 字符串添加新行?我正在尝试读取一个文件,但是当我尝试附加 '\n' 时它不起作用。

std::string m_strFileData;
while( DataBegin != DataEnd ) {
m_strFileData += *DataBegin;
m_strFileData += '\n';
DataBegin++;
}

最佳答案

如果您有很多行要处理,使用 stringstream 可能会更有效率。

ostringstream lines;

lines << "Line 1" << endl;
lines << "Line 2" << endl;

cout << lines.str(); // .str() is a string

输出:

Line 1
Line 2

关于c++ - 我无法向 C++ 字符串添加新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4128077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com