Hi,
Will the email domain always be the same as in your example?
There are going to be loads of ways of how to do this, but if its the same then you could
Here are the steps and total code
1. Split by :
Split(HTMLText, ':')
2. Split(Split(HTMLText, ':'), '@Aimsts.com)')
3. You want the first part of step 2
So you want to concat the
4. concat(trim(split(split(HTMLText, ':'), '@Aimsts.com)')[0]), '@Aimsts.com')
But the above splits it at the :, then splits it again by the Domain, gets the array index 0 and trims any spaces, then puts the EmailDomain back. since it was part of the larger [1] index of the split
If you have to use other email address's then we can do it another way, you can also use regular expressions