Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!halley!pedz From: pedz@halley.UUCP Newsgroups: comp.sys.handhelds Subject: Re: Forming boolean expressions Message-ID: <996@halley.UUCP> Date: 24 Sep 90 17:53:18 GMT References: <1990Sep22.163700.15239@mathrt0.math.chalmers.se> Sender: news@halley.UUCP Distribution: comp Lines: 16 In-reply-to: d0evert@dtek.chalmers.se's message of 22 Sep 90 16:37:00 GMT >Example: NOT (A OR B) <=> NOT (A) AND NOT (B) > > A AND NOT A = 0 This looks like a good place to use ^match and Vmatch. I've used this only once of twice but it can definately do what you want. e.g. << { '&a AND NOT &a' '0' } ^MATCH >> Would be the second example. But I don't have much insight as to when to use ^MATCH as oppose to VMATCH. I understand (sorta) how they differ but don't understand when to use one or the other. Anyone care to comment? pedz