
Announcements
I'm trying to extract all characters before the @.
What functions can be used to extract the characters?
You can use the Split() function to split any string based on a character into an array. Then use First() to get the first entry in the array. Something like this.
First(Split('pstork@acmeman.com','@'))