C++ string content function help!?
-
trying to get the program to recognize different things in one string. and i want it to be in a function in a different class to be called to. Here is the code: #include <iostream> #include <fstream> #include <string> #include <sstream> #include <cstdlib> using namespace std; string input; bool strContains(const string inputStr, const string searchStr) { size_t contains; contains = inputStr.find(searchStr); if(contains != string::npos) return true; else return false; } class functions { public: static void test() { if(strContains(input, "go")) { printf ("True"); } else if(strContains(input, "Stay")) { printf ("False"); } } }; //Testing the string content use for calling other functions // and finding commands #include <iostream> #include <string> #include "function.cpp" using namespace std; int main() { functions p; string doing; string input; cout << "What shall we do sir?" << endl; cin >> doing; input = doing; if(strContains(input, ";")) { p.test(); } else cout << "False"; return 0; } i get 'multiple definition of 'strContains (std::string, std::string)' error and a 'multiple definition of 'input' error any ideas?
-
Answer:
There are some minor changes. Most importantly: you declared input on a global scope and in main. The local copy in main hides the global copy. Hence the find function is seeking in an empty string. Also cin needed to be replaced by getline in order to interprete a whole sentence rather than one word, only. have fun! #include <iostream> #include <fstream> #include <string> #include <sstream> #include <cstdlib> using namespace std; string input; bool strContains(const string inputStr, const string searchStr) { size_t contains; contains = inputStr.find(searchStr); return contains != string::npos ? true : false; } class functions { public: static void test() { if(strContains(input, "go")) { printf ("True"); } else if(strContains(input, "Stay")) { printf ("False"); } } }; int main() { functions p; string doing; //string input; cout << "What shall we do sir?" << endl; getline(cin, doing); input = doing; cout << "input: " << input << endl; if(strContains(input, ";")) { p.test(); } else { cout << "False"; } return 0; }
daviddiz... at Yahoo! Answers Visit the source
Other answers
I got your code compiled without any error. It is running though I dont know what it is doing.
James Bond
Probably because you are including the .cpp using a #include... Dont use includes for .cpp. Replaced that statement with "extern bool strContains(const string inputStr, const string searchStr);" That will fix it
Mike
Related Q & A:
- How to split a string in C++?Best solution by Stack Overflow
- How to convert from string to char in C++?Best solution by Stack Overflow
- How to implement C callback function in Swift?Best solution by pr8x.com
- Domain function help?Best solution by Yahoo! Answers
- What would be the best book to Help me learn web design in C# and asp.net?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.