Welcome to the Mythicsoft Q&A site for:

- Agent Ransack
- FileLocator Lite
- FileLocator Pro

Please feel free to ask any questions on these products or even answer other community member questions.

Useful Links:

- Contact Us
- Help Manuals
- Mythicsoft Home
0 votes

Example, if I look for ProcAddress I will only get matches for ProcAddress, but not for GetProcAddress. What gives?

Is there a way to match word parts like that?

by (485 points)

1 Answer

+1 vote
 
Best answer

It's due to the way an index search works. For an index search to be fast you need to be able to find the start of the word quickly, so GetProc* is fast but *ProcAddress is slow because you are basically checking EVERY term in the index.

There's more information on the limitations of index search here:
https://help.mythicsoft.com/filelocatorpro/en/index-interface.htm

by (30.1k points)
Slower would be fine, actually. The problem is that right now I don't get any result. Think in terms of function pointers. You may have function address dynamically retrieved, say CreateFile (contrived example), and a pointer to it is named pCreateFile. The mechanism you explained makes it impossible at all to find the latter, whereas slower would be good enough for me in such borderline cases.
As the link explains, if you want an equivalent search you would need to prefix with '*'. I've updated the answer because some of the previous formatting was hiding the wildcard.
Ah, thanks. Indeed it was hidden. So I actually misunderstood it also. Thanks for taking the time to respond.
...