On Wed, July 8, 2009 06:41, Charles Gregory wrote: > So the desired test is:
do you have a dual quad core that idles ? :) > rawbody LOC_09070702 /^Assets of my deceased Client/m rawbody takes more cpu power then body LOC09070702 /\bAssets of my deceased Client\b/ why missing /i ? and why exact match on begin of line ? another way to catch it body __A1 /\basserts\b/i body __A2 /\bof\b/i body __A3 /\bmy\b/i body __A4 /\bdeceased\b/i body __A5 /\bclient\b/i meta LOC09070702 (__A1 && __A2 && __A3 && __A4 && __A5) ... ... if in my example all 5 words is found in body it will hit -- xpoint