如何在c ++中搜索另一个字符串中的字符串?

时间:2015-04-21 10:14:14

标签: c++ string search char

int main(){
string s1="gandalf";
string s2="dal";
function(s1,s2);
return 0;

}

在函数中,如果字符串s1中有“dal”,则返回1。 否则返回0

2 个答案:

答案 0 :(得分:6)

尝试以下

bool function( const std::string &s1, const std::string &s2 )
{
    return s1.find( s2 ) != std::string::npos;
}

如果你想使用循环自己编写函数,那么它可以采用以下方式

#include <iostream>
#include <iomanip>
#include <string>

bool function( const std::string &s1, const std::string &s2 )
{
    bool found = false;

    if ( !( s1.size() < s2.size() ) && !s2.empty() )
    {
        for ( size_t i = 0; !found && i < s1.size() - s2.size() + 1; i++ )
        {
            size_t j = 0;
            while ( j < s2.size() && s1[i+j] == s2[j] ) ++j;
            found = j == s2.size();
        }
    }

    return found;
}

int main() 
{
    std::string s1 = "gandalf";
    std::string s2 = "dal";

    std::cout << std::boolalpha << function( s1, s2 ) << std::endl;

    return 0;
}

程序输出

true

答案 1 :(得分:0)

void fonk(string a, string b){
char x[10],y[10];
for(int i=0;i<10;i++)
x[i]=a[i];
for(int i=0;i<10;i++)
y[i]=b[i];

for(int j=0;j<10;j++){
    if(x[j]==y[0]&&x[j+1]==y[1]&&x[j+2]==y[2])
    cout<<"true"<<endl;
    else
    cout<<"false"<<endl;

} }