I’m trying to check whether a string contains a substring in C like:

char *sent = "this is my sample example";
char *word = "sample";
if (/* sentence contains word */) {
    /* .. */
}

What is something to use instead of string::find in C++?

12 Answers
12

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *