Hi,
please try the below rule.
begin
if(upper($address) in ('ave', 'st','rd','blvd','dr'))
return true;
else
return false;
end
or u can use this one also
begin
if(upper($address) like ('%ave%', '%st%','%rd%','%blvd%','%dr%'))
return true;
else
return false;
end
the above rules will be moved to passed data set. If u want to move those records which r having those above keywords change the code to:
return false;
else
return true;
end
mark it as helpful/correct answer if it is useful to u For yesterday and todays answer :-)
regards
krishna