gpt4 book ai didi

C++ 在输入中查找字符串并使用运算符

转载 作者:太空宇宙 更新时间:2023-11-04 11:30:06 24 4
gpt4 key购买 nike

我一直在尝试寻找一种方法来在 cmd 中使用字符串输入,并且只要这些字符串存在,cmd 就会输出。下面是一些可以工作但仍然存在一些问题的代码。

    if (text.find("floor") && text.find("knife")!=std::string::npos)
{
std::cout << "Knife and Floor test" << std::endl;
}
if (text.find("knife") !=std::string::npos)
{
std::cout << "just knife" << std::endl;
}

以上确实有效。有点儿。在地板上打字没有给出很好的回应。 “地板刀”输出我想要的“Kife and Floor test”。但只输入“knife”会同时“Knife and Floor test”和“just knife”。

        if (text.find("can") !=std::string::npos)
{
if (text.find("elizabeth") !=std::string::npos)
{
if (text.find("you") !=std::string::npos)
{
std::cout << "1912" << std::endl;
}
}
}
if (text.find("elizabeth") !=std::string::npos)
{
std::cout << "just elizabeth" << std::endl;
}

上面的也可以,但是它给出了类似的问题。尽管当只有“elizabeth”、“can”和“you”存在时“1912”确实输出,但“just elizabeth”也会输出。

最后,如果可能的话,我的目标是能够控制使用运算符输入的内容运行的内容。如果操作数是错误的方式,那么我应该使用什么?

目标伪代码

if((("word"||"thisword")&&("this")) !=std::string::npos)

{

run

}

or

if(("thisword") && ("thisotherword") !=std::string::npos)

{

run

}

or

if(("thisword") || ("thisotherword") !=std::string::npos)

{

run

}

有什么想法吗?谢谢!

最佳答案

尝试以下操作

    if ( text.find( "floor" ) != std::string::npos && 
text.find( "knife" ) != std::string::npos )
{
std::cout << "Knife and Floor test" << std::endl;
}
else if ( text.find( "knife" ) != std::string::npos )
{
std::cout << "just knife" << std::endl;
}

//...

if ( text.find( "can" ) != std::string::npos )
{
if ( text.find( "elizabeth" ) != std::string::npos )
{
if ( text.find( "you" ) != std::string::npos )
{
std::cout << "1912" << std::endl;
}
}
}
else if ( text.find( "elizabeth" ) != std::string::npos )
{
std::cout << "just elizabeth" << std::endl;
}


if( ( text.find( "this" ) != std:;string::npos &&
( text.find("word" ) != std::string::npos ||
text.find( "thisword" )!= std::string::npos ) )

{

run

}

if ( text.find( "thisword" ) != std::string::npos && 
text.find( "thisotherword" ) != std::string::npos )
{

run

}

if ( text.find( "thisword" ) != std::string::npos || 
text.find( "thisotherword" ) !=std::string::npos )
{

run

}

第一个if语句可以改写成下面的方式

if ( text.find( "knife" ) != std::string::npos )
{
if ( text.find( "floor" ) != std::string::npos )
{
std::cout << "Knife and Floor test" << std::endl;
}
else
{
std::cout << "just knife" << std::endl;
}
}

关于C++ 在输入中查找字符串并使用运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25099660/

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