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

In FileLocator Pro, I have a dataset of PST searches.

Now I need to search in the Sent To and CC email address for specific keywords in the the email address.
Example Sent To: me@mycompany.com I would need to use only "mycompany" keyword as part of the domain name address.

Any help pls?

by (35 points)

1 Answer

+1 vote

You would need to use a regular expression to search the Sent to line, e.g.

Containing Text: REGEX "To:.*mycompany"
by (30.1k points)
Thanks.
I have updated to multiline Regex to search multiple To and also in CC.
For reference this works fine.

(To: .*mycompany1) |
(To: .*mycompany2) |

(CC: .*mycompany1) |
(CC: .*mycompany2)
...