# $EPIC: remw.txt,v 1.6 2007/07/10 22:09:59 jnelson Exp $ ======Synopsis:====== $remw( ) ======Technical:====== * If the argument is omitted this function returns the empty string. * The return value of this function is with the first occurrence of the literal word removed. * One space surrounding is removed; additional spaces will remain. * and are case insensitive. * Remember that is a [[what is a word|word]]. * Remember that is a list of [[what is a word|words]]. * There is no practical way to support removing consecutive uwords from a uword list. A design flaw in EPIC4 allowed you to surround in double quotes and it would remove multiple consecutive words from . This behavior is not supported in EPIC5. ======Practical:====== If you have a list of words and you know what one of the words are and you want to remove it, you can use this function. This function is best if you know the word to be removed, but you don't know where it is. This saves you having to use $[[findw]]() to look it up and $[[notw]]() to remove it. ======Returns:====== with first occurrence of removed. ======Examples:====== $remw(two one two three) returns "one three" $remw(two one two three two one) returns "one three two one" ======History:====== This function first appeared in "+2" (post-ircII, pre-EPIC)