# $EPIC: beforew.txt,v 1.4 2007/03/02 02:32:04 jnelson Exp $ ======Synopsis:====== $__beforew__( ) ======Technical:====== * If the argument is omitted this function returns the empty string. * The does not actually need to be a list of wildcard patterns. A list of literal words will work just fine. * If is not matched by any of the words in , this function returns the empty string. * Otherwise, the function behaves "as if" the following had been performed: = rmatch( ) = leftw( ) * Remember that is a list of [[what is a word|words]]. ======Practical:====== This function lets you get the part of that occurs BEFORE the pattern that is the "best match" for . You can of course use this function with a list of literal words. ======Returns:====== The portion of before the pattern that is the "best match" of . A word is always "best matched" by itself; see the help file on pattern matching for more detail. ======Examples:====== $beforew(foobar one two foobar my shoe) returns "one two" $beforew(booya one two foobar my shoe) returns "" (empty string) $beforew(foobar o* t* f* m* s*) returns "o* t*" $beforew(booya o* t* f* m* s*) returns "" (empty string) $beforew(foobar f* fo* foobar foo* foob*) returns "f* fo*" ======History:====== This function first appeared in "plus 2" (post-ircII, pre-EPIC)