Regex patter for extracting first and last name from email

Hi,

In this case, I recommend to use lookbehind of regex as the following.

System.Text.RegularExpressions.Regex.Match(yourString,"(?<=EMAIL:\s*)\S+").Value

System.Text.RegularExpressions.Regex.Match(yourString,"(?<=CALL:\s*)\S+").Value

System.Text.RegularExpressions.Regex.Match(yourString,"(?<=Location:\s*).+").Value

And can you share which part do you want to extract as Name?

Regards.