strsrch(3) LPC Library Functions strsrch(3) NNAAMMEE strsrch() - search for substrings in a string SSYYNNOOPPSSIISS int strsrch( string str, string substr | int char, int flag ); DDEESSCCRRIIPPTTIIOONN strsrch() searches for the first occurance of the string `substr' in the string `str'. The last occurance of `sub- str' can be found by passing `-1' as the 3rd argument (which is optional). If the second argument is an inte- ger, that character is found (a la C's strchr()/strrchr().) The empty string or null value can- not be searched for. RREETTUURRNN VVAALLUUEE The integer offset of the first (last) match is returned. -1 is returned if there was no match, or an error occurred (bad args, etc). SSEEEE AALLSSOO explode(3), sscanf(3), replace_string(3), regexp(3) MudOS 5 Sep 1994 1