For example I have this string, where email addresses are differently formatted:
"[email protected]" <[email protected]>|"Michal pichal ([email protected])" <[email protected]>|Melisko Pan <[email protected]>
I need to extract the email addresses in a form of:
[email protected]|[email protected]|[email protected]
My idea was to get any char near @ from group [0-9][A-Z][a-z]@.- but I do not know how. Please help with some hint.