JESS: jess

2005-10-20 Thread [EXTERN] Manuel Kollmuß
hi is it possible to read out informations from a *.dll and to handle the return value (string)?

Re: JESS: jess

2005-10-20 Thread ejfried
I think =?iso-8859-1?Q?=5BEXTERN=5D_Manuel_Kollmu=DF?= wrote: [Charset iso-8859-1 unsupported, filtering to ASCII...] hi is it possible to read out informations from a *.dll and to handle the return value (string)? Sure, in the same way you'd do it from any Java program: you wrap the DLL

JESS: Using multifields in LHS

2005-10-20 Thread Henrique Lopes Cardoso
Hi, I am having trouble in getting to multifields and strings. I was trying to evaluate the contents of a string in a rule's LHS: (assert (a nice string)) (defrule r1 (a ?x) ?s - (explode$ ?x) ?s - (nice ?what) = (printout t ?what crlf) ) I know I cannot do this. But I cannot

Re: JESS: Using multifields in LHS

2005-10-20 Thread Alan Moore
Or more simply: (assert (a nice string)) (assert (b nice)) ; note: nice (in quotes) won't work (defrule r1 (a ?x) (b ?y:(member$ ?y (explode$ ?x))) = (printout t Found! crlf) ) (run) i.e. a non-zero value from (member$) evaluates in the pattern above like a TRUE - or like (neq