I am using the .NET regex syntax in a Nintex action and would like to extract the email as shown below
i:0#.f|membership|daniel.Smith@domain.onmicrosoft.com
Now I think the approach is match the i:0#.f|membership bit but exclude it then match the rest. I would appreciate any help on this. I did try this expression which did match some on the above.
(?<=)(i:0#.f|membership).
Daniel