HELP STRMEMBER                              Aaron Sloman, December 1981

This procedure takes a character code and a string or word, and returns
either FALSE or the location of the first occurrence of the character,
if it is in the string. For example:

     strmember(`t`, 'catch') =>
    ** 3
     strmember(`c`, "catch") =>
    ** 1
     strmember(`z`, 'catch') =>
    ** <false>

STRMEMBER could be defined as:

     define strmember(c, s);
       locchar(c, 1, s)
     enddefine;


See also *LOCCHAR, *ASCII, *LOCCHAR_BACK, *SKIPCHAR, *SKIPCHAR_BACK
         *STRINGS, REF *STRINGS

--- C.all/help/strmember -----------------------------------------------
--- Copyright University of Sussex 1987. All rights reserved. ----------
