c++如何去掉字符串中的换行符
时间: 2024-06-06 15:06:19 浏览: 170
换行字符串去掉换行
可以使用Python的replace()函数,将换行符替换为空字符串即可。示例代码如下:
str_with_newline = "Hello\nWorld\n"
str_without_newline = str_with_newline.replace('\n', '')
print(str_without_newline)
输出结果为:
HelloWorld
阅读全文