The Lite version doesn't have a specific Whole Word feature (it is in Pro version) but you can specify the word boundary with the <
and >
characters, for example to search for the whole word 'file':
Containing Text: <file>

Agent Ransack 2010 or earlier
You can simulate the feature using RegEx, e.g. when searching for 'word' use:
\bword\b
The \b in 'regex speak' means 'word boundary'. So, to search for a specific word only, e.g. file
, you would do something like this:
