gpt4 book ai didi

c++ - 无法弄清楚如何在 C++ 中的字符串或字符串流中找到空格

转载 作者:行者123 更新时间:2023-11-28 06:28:10 25 4
gpt4 key购买 nike

这是我的代码,它适用于任何输入。我试图做到这一点,以便当您输入数字时,它会打印出“Hello World!”,但是如果您输入任何其他内容,然后是一个正数,例如:1 2, abc, 1 abc, You会得到无效输入提示。它适用于所有内容,除了当我输入“3 2”之类的内容时,它只会打印出“Hello world!”三遍,或者任何第一个数字,除了无效的输入提示之外,它应该不打印任何东西。

using namespace std;

int main( int argc, char**argv )
{

cout << "How many times?" << '\n';

while( !cin.eof() )
{
string inputString;
int x = 0;
int r;

getline(cin, inputString );
stringstream s(inputString);

//while loop which, if r > 1, then the input is invalid
while( s >> x )
{
r++;
}

s >> x;

if( s.fail() || cin.eof() || r > 1 )
{
cout << "invalid input, please try again." << '\n';
s.str("");
x = 0;
}

for(int i = 0; i < x; i++)
{
cout << "Hello World!" << endl;
}
cout << "How many times?" << '\n';

if( cin.eof() )
{
cout << '\n' << "bye" << endl;
break;
}
}
}

while( s >> x ) 循环告诉我,如果输入“1 abc def”之类的内容,则 r = 3,但如果仅输入“1”之类的内容,则 r = 1。但是我一直在取出这个循环并重新添加它,因为每当我包含它时,整个事情都被毁了。任何输入都将被视为无效。有没有更好的方法让我能够在字符串中有空格时将其视为无效?

最佳答案

检查给定字符串中是否有空格的最简单方法是

if ( inputString.find(' ') != std::string::npos ) ...

如果你想搜索空格或tab,那么你可以:

if ( inputString.find_first_of(" \t") != std::string::npos ) ...

不过,最好的“可移植”方法是使用标准 std::isspace 函数检查每个字符是否为空格字符:

int (*IsSpace)(int) = std::isspace;
if ( std::find_if(inputString.begin(), inputString.end(), IsSpace)
!= inputString.end() ) ...

(对 IsSpace 的赋值是必要的,因为 std::isspace 已重载,因此传递 std::isspace 而不是此 IsSpace 可能会导致不可能的重载解析错误)。

关于c++ - 无法弄清楚如何在 C++ 中的字符串或字符串流中找到空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28145231/

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