As an example, I'm trying to search for distinct (discrete) instances of '20%' in the text of a file using FileLocator Pro.
Text example in file: "I have an interest rate of 20%"
I'm trying to find a way to search for '20%' as a discrete result.
I've tried ^20%$ with a small number of results when there should be more.
\b20% throws up instances of '20%' but also instances where it exists within any other number (say, in '1.20%'). \b20%\b doesn't give any results.
I'm fairly new to all this, so please forgive my ignorance - help much appreciated!