# $EPIC: findws.txt,v 1.2 2007/02/15 03:53:35 jnelson Exp $
$findws(<word> <wordlist>)
This function searches <wordlist> for <word> and returns all of the places it was found. If <word> isn't in <wordlist>, -1 is returned. You would use this instead of findw if <wordlist> had duplicates values.
All <value>s where $word(value <wordlist>) == [<word>]
$findw(very epic is a very very scriptable client) /* returns 3 4 */ assign test blah hmm foo bar hmmm fe ($findws(hmm $test)) x { echo $word($x $test) } /* Echos "hmm" twice. */