strstr
const char * strstr ( const char * str1, const char * str2 );
char * strstr ( char * str1, const char * str2 );
Locate substring
Returns a pointer to the first occurrence of str2 in str1, or a null pointer if there str2 is not part of str1.
The matching process does not include the terminating null-characters.
Parameters
str1
C string to be scanned.
str2
C string containing the sequence of characters to match.
Самое стандартное, что есть. Может, в Билдере ещё что-то своё, но это-то должно быть.