In my tracker program I have a matchuser routine that takes all the saved IP's (data) in the user's name (item) and searches for the same individual IP's in other items. The problem is I'm using a wildcard search in $hfind and if the current searched IP is something like 1.2.3.4 it will also match to 1.2.3.40 (1.2.3.4*) and thus give additional incorrect matches. How do I use $hfind to match for the exact search item?

This is the current 'wildcard' $hfind :

var %entry2 = $hfind(iptracker,$+(*,%entry,*),%c,w).data

I've tried the following to search for the exact string, but it doesn't work:

var %entry2 = $hfind(iptracker,%entry,%c).data