Can anyone help me in figure out a simple regex pattern to get few details

In this text pattern it’s complicated a bit due to the fact you have carriage returns but that can be integrated into the regular expression.

I suggest you try one element at a time and use a capture group to get the element you want.

Something like

Email\r([a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*)

Have a look at this thread too.