首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

替换STL字符串中的换行符

在C++中,可以使用std::replace函数来替换字符串中的特定字符。以下是一个示例代码,演示如何将字符串中的换行符替换为空格:

代码语言:c++
复制
#include<iostream>
#include<string>
#include<algorithm>

int main() {
    std::string str = "This is a\nstring with\nnewlines.";
    std::replace(str.begin(), str.end(), '\n', ' ');
    std::cout<< str<< std::endl;
    return 0;
}

输出:

代码语言:txt
复制
This is a string with newlines.

在这个示例中,我们使用了std::replace函数将字符串str中的所有换行符\n替换为空格。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券