Searching for substrings using 'srtchr()'

137 Views Asked by At

Using the function strchr is it possible to search for a substring in a string instead of a character?

Example:

Instead of this :

int r=strchr("Hello World",'W');

Can this be used :

int r=strchr("Hello World","World");
3

There are 3 best solutions below

0
On BEST ANSWER

Nope. You can use strstr for that

char *substring = strstr("Hello World","World");
2
On

Using the function 'strchr()' is it possible to search for a 'substring' in a string instead of a 'character'?

Example :

Instead of this : int r=strchr("Hello World",'W');

Can this be used : int r=strchr("Hello World","World");

No, that's what strstr() is for.

Note also that strchr() does not return int, it returns a char * pointer to the character searched for, or NULL if not found. Compiler warnings exist for a reason...

0
On

Use strstr for this.

Use this link for reference

http://www.cplusplus.com/reference/clibrary/cstring/strstr/