Hello everyone,
I want to search and match a partial string in regular expression.
There is an adress list where i want to look if there is a match, for example:
Street 1
Street 2
Street 3
The text i want to search for is a mailbody, for example:
'I am living on Street 1.' --> Match in this case will be: 'Street 1.'
How can i create a regex expression where it will match a part of the mailbody?

Thankyou!