Showing posts with label What is the functionality of the function strstr and stristr?. Show all posts
Showing posts with label What is the functionality of the function strstr and stristr?. Show all posts

Saturday, May 16, 2009

What is the functionality of the function strstr and stristr?

strstr() returns part of a given string from the first occurrence of a given substring to the end of the string. For example: strstr("user@example.com","@") will return "@example.com".
stristr() is idential to strstr() except that it is case insensitive.