btmux-0.6-rc4/doc/
btmux-0.6-rc4/event/
btmux-0.6-rc4/game/
btmux-0.6-rc4/game/maps/
btmux-0.6-rc4/game/mechs/
btmux-0.6-rc4/game/text/help/
btmux-0.6-rc4/game/text/help/cat_faction/
btmux-0.6-rc4/game/text/help/cat_inform/
btmux-0.6-rc4/game/text/help/cat_misc/
btmux-0.6-rc4/game/text/help/cat_mux/
btmux-0.6-rc4/game/text/help/cat_mux/cat_commands/
btmux-0.6-rc4/game/text/help/cat_mux/cat_functions/
btmux-0.6-rc4/game/text/help/cat_templates/
btmux-0.6-rc4/game/text/wizhelp/
btmux-0.6-rc4/include/
btmux-0.6-rc4/misc/
btmux-0.6-rc4/python/
btmux-0.6-rc4/src/hcode/btech/
btmux-0.6-rc4/tree/
& member()
 
  Syntax: member(<list>, <word>[, <delim>])
 
  This function takes a list and a word, and returns the position of 
  that word within the list. If the word does not occur in the list, 
  then 0 is returned. Unlike match(), member() does not check for 
  wildcarding, and the cases of <list> and <word> are significant. A 
  word is defined as a string which has no interior spaces. So 'hello' 
  would be one word, while 'hello there' would be two. <delim> may be 
  used to specify a delimiter other than a space.
 
  Example:
 
  > say member(This is a member test, member)
  You say "4"
  > say member(This is a member test, Member)
  You say "0"
  > say member(This is a member test, *e*)   
  You say "0"
  > say member(This is a member test, is a)
  You say "#-1 CAN ONLY TEST ONE ELEMENT"
 
	See Also: LISTS, match(), strmatch()