<br>Need to do some tasks if customers age is in 18,21,33,28,40,41. Can&#39;t use contains as age is a string value.Could any one help me out. Below rule does not work.<br><br><br>rule &quot;Age Factor&quot;<br>     when<br>
          m : Customer( age matches &quot;18,21,33,28,40,41&quot;)<br>     then          <br>         System.out.println(&quot;Customer falls in age group &quot;);<br>          doAgeTasks();<br>end<br><br>Thanks,<br>Lindy.<br>