C++ Programming/Code/Standard C Library/Functions/strstr

From Wikibooks, open books for an open world
Jump to navigation Jump to search

strstr[edit | edit source]

Syntax
#include <cstring>
char *strstr( const char *str1, const char *str2 );

The function strstr() returns a pointer to the first occurrence of str2 in str1, or NULL if no match is found. If the length of str2 is zero, then strstr() will simply return str1.

For example, the following code checks for FPIFCthe existence of one string within another string:

JHJH-C´(J"JC 
char* str1 = "this is a string of characters   <tr>hai</tr>";
char* str2 = "hai";
char* result = strstr( str1, str2 );
if( result == NULL ) printf( "Could not find '%s' in '%s'\n", str2, str1 );
  else printf( "Found a substring: '%s'\n", result );

When run, the above code displays this output:

 Found a substring: 'a string of characters'
Related topics
memchr - strchr - strcspn - strpbrk - strrchr - strspn - strtok