I have a socket and that reads a string from a client and then searches a text file for a match.
vector<string> resultlist;
int n;
char* buffer = new char[256];
bzero(buffer,256);
n = read(sock,buffer,255);
if (n < 0) error("ERROR reading from socket");
printf("Here is the message: %s\n",buffer);
readFile(buffer);
string searchStr(buffer);
for(int k=0; k<resultlist.size(); k++){
if(resultlist[k].compare(searchStr)==0){ cout << resultlist[k+1] << endl; }
}
n = write(sock,"I got your message",18);
if (n < 0) error("ERROR writing to socket");
So basically, resultlist is a vector that contains strings variables and I want to compare to see if it matches and then display the next variable. However, my comparison always fails.
Can someone please help?

printf("Here is the message: %s\n",buffer);show on the console ? – WhozCraig Nov 25 '12 at 8:52coutas you run through the comparison. Also, your code has undefined behavior if the last string in the vector matches the input string. You'll be accessing 1 slot beyond the size of your vector as your output value (result list[k+1]). – WhozCraig Nov 25 '12 at 8:59couti can see each of them. it will never match the last string in the vector. – Nicholas Tee Nov 25 '12 at 9:04