Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a string like "Tim.Kimball@amazon.com". How to remove the string (email id) to show only First Name and Last Name.
"Tim.Kimball@amazon.com" into "Tim Kimball" (removing the string from @ and replacing the period with a space character)
thanks
replace(subfield('Tim.Kimball@amazon.com', '@', 1), '.', ' ')
replace(subfield('Tim.Kimball@amazon.com', '@', 1), '.', ' ')
try
=subfield('Tim.Kimball@amazon.com','@',1)
Hi, What if I need to keep rest text after the email e.g.
Orpigina Text : My Email is Tim.Kimball@amazon.com. Please Contact.
Desire Replace Text: My Email is Tim.Kimball****. Please Contact.