But, how do I return a list of keywords in listb that do not exist lista.
Thx,
John O.
>Subject: What is the opposite of @KEYWORDS
>From: joh...@awcda.com (John Osell)
>Date: 4 Jul 1996 18:20:11 GMT
Use the @replace function.
e.g. answer:=@trim(@replace(lista; listb;"")
newlist:=@explode(@implode(answer;";");";")
replace matching values with blank and trim out the blanks
then rebuild multiple values (you could do this in one line)
Arthur
you will also need to perform
Thanks Arthur. Just one question, is the above reply complete. The last sentence looks unfinished.
Thx,
John O.
>Subject: Re: What is the opposite of @KEYWORDS
>From: joh...@awcda.com (John Osell)
>Date: 8 Jul 1996 20:11:28 GMT
Yes the last line is complete. I was basically saying that rather that
splitting the the formula into a number of lines you could put specify the
formula in one line.
ans:=@explode(@implode(@trim(@replace(lista; listb;""));";");";")
Arthur