Help me find a regex pattern to extract these data

I am using an integration tool called make to extract these data but I need regex patterns to extract the data in this email.

Want the tool supports ECMAScript regex, If anyone can help me figure out a pattern for this then it would be great

Hi @Fahad_Sheji,

Regex For Phone:
09(0[1-2]|1[\d]|3[\d]|2[0-1])[\d]{3}[\d]{4}/g

Regex for email:
a-z0-9!#$%&'+/=?^_{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_{|}~-]+)@(?:a-z0-9?.)+a-z0-9?/g

Regex for Location:
d{1,5}\s\w.\s(\b\w*\b\s){1,2}\w

Thank you, what about the regex for name

btw I tried these and didn’t work.
someone told me only ECMAScript works in the tool use and also this

@Fahad_Sheji can you elaborate what is ECMA.

so I posted similar question here

Someone there said my system support ECMAScript regex. I think its a regex language, not sure.