Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using the find method of the string class and I'm not getting the correct results in my query. Here is my code

int main()
{
    string phoneData;
    string name;
    string phoneNumbers[51];
    ifstream inputFile;
    inputFile.open("phonebook");
    int i = 0;
    while (getline(inputFile, phoneData))
    {
        phoneNumbers[i] = phoneData;
        i++;
    }
    cout << "Enter a name or partial name to search for: ";
    getline(cin, name);
    cout << endl << "Here are the results of the search: " << endl;

    for(int i =0;i<50;i++)
    {
        if (name.find(phoneNumbers[i]) == 0)
            cout << phoneNumbers[i] << endl;
    }
    inputFile.close();
    return 0;
}
share|improve this question
4  
you need to finish your ques – just somebody Dec 13 '12 at 18:00
2  
I would expect that you need to use if(phoneNumbers[i].find(name) != std::string::npos) instead of name.find(phoneNumbers[i]) == 0 – Chad Dec 13 '12 at 18:01
1  
Any reference would tell you what it returns. – chris Dec 13 '12 at 18:10
Hahaha, just somebody. Yeah I'm not sure what happened there but I edited it. Must have been distracted. – Keith Jan 12 at 6:04

2 Answers

up vote 3 down vote accepted

you aren't using it correctly. string::find() returns the beginning position when it finds a match, or string::npos if it doesn't find a match. you also have the search backwards. you're looking for 'name' inside 'phoneNumbers[i], not the other way around. your check inside the loop should look like this:

if (phoneNumbers[i].find(name) != string::npos)
    cout << phoneNumbers[i] << endl;
share|improve this answer
Thank you so much. I had a hard time understanding the syntax of this method but now I understand. Thanks again! – Keith Dec 13 '12 at 18:11
1  
@Keith you can thank me by accepting this as the answer =D – Mike Corcoran Dec 13 '12 at 18:13
1  
Sorry I was busy with school work. It's finals week! But I didn't forget, I always come back and do the right things. Thanks again for clearing this up. – Keith Dec 15 '12 at 17:42

Change

if (name.find(phoneNumbers[i]) == 0)

to

if (phoneNumbers[i].find(name) != std::string::npos)

The former is trying to locate phoneNumbers[i] within name. The second (which I believe is what you intended) is searching for name within phoneNumbers[i]. Second, the failure return for std::string::find is std::string::npos not zero.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.