gpt4 book ai didi

c++ - 如何查看一个字符是否等于一个新行

转载 作者:可可西里 更新时间:2023-11-01 13:50:26 24 4
gpt4 key购买 nike

我有一个字符串,该字符串包含例如“Hello\nThis is a test.\n”。

我想在字符串中的每个\n 上拆分整个字符串。我已经制作了这段代码:

vector<string> inData = "Hello\nThis is a test.\n";

for ( int i = 0; i < (int)inData.length(); i++ )
{
if(inData.at(i) == "\n")
{
}
}

但是当我完成这个时,我得到了一个错误:(\n 作为一个字符串)

binary '==' : no operator found which takes a left-hand operand of type 'char' (or there is no acceptable conversion)

(以上代码)

'==' : no conversion from 'const char *' to 'int'

'==' : 'int' differs in levels of indirection from 'const char [2]'

问题是我无法查看字符是否等于“换行”。我该怎么做?

最佳答案

"\n"const char[2] .使用 '\n'相反。

实际上,您的代码甚至无法编译。

你的意思可能是:

string inData = "Hello\nThis is a test.\n";

for ( size_t i = 0; i < inData.length(); i++ )
{
if(inData.at(i) == '\n')
{
}
}

我删除了 vector从你的代码中,因为你显然不想使用它(你试图从 vector<string> 初始化 const char[],这是行不通的)。

另请注意 size_t 的使用而不是 inData.length() 的转换至 int .

关于c++ - 如何查看一个字符是否等于一个新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9281009/

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