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

Hi, I tried to look for an answer, I hope this isn't a duplicate question.

I use FileLocator to search for containing text within txt files.

If I search for email for example

johnsmith@domain.com I want to search include also results like this:

john.smith@domain.com
johnsmith.@domain.com
j.oh.n.smith@domain.com

So, to ignore any dot within the string.

I tried using Fuzzy mode but then I get many unwanted results.

Hope this is clear what I am looking for, thanks

by (20 points)

1 Answer

0 votes

You can change the 'Fuzzy' matching 'distance' in the Boolean Expression settings but if you want that specific character sequence I think a regular expression is your best bet, try:

Containing Text: REGEX "j.?o.?h.?n.?s.?m.?i.?t.?h.?@domain\.com

The '.' will actually match up against any character, so if you want only '.' replace '.?' with '\.?'.

by (30.1k points)
...