C++查找方法不起作用

2022-02-24 00:00:00 string find methods c++

我对c++还很陌生,所以很抱歉我缺乏if知识,但是由于某些原因,我的find方法不起作用。任何帮助都很好,下面是我正在使用的代码。

www.pastie.org/9434690

//String s21 
string s21 ="| o |";  

if(s21.find("1")){
    cout << "IT WORKS OMG " << s21 << endl;
}
else if(!s21.find("1")){
    cout << "HASOSDKHFSIF" << endl;
}

谢谢

忘了说,即使字符串中没有"o",代码也始终打印"IT Works"。


解决方案

这里的问题是您的if语句。s21.find("1")将返回要匹配的字符串中第一个匹配项的索引。如果没有找到匹配项,则返回string::npos,这是值-1的枚举。IF语句将对所有不等于零的数字返回TRUE。因此,您需要对string::npos进行测试,如下所示:

if(s21.find("1") != std::string::npos)
{
    cout << "IT WORKS OMG " << s21 << endl;
}
else
{
    cout << "HASOSDKHFSIF" << endl;
}

相关文章