Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community
I need to extract that part of a text string, that is placed left from the '@'
(username@domain.code) - can that be done and how?
//Soren
hi
use this:
subfield(yourfieldname,'@',1) as username
create this field in the back end script. After doing reload use this script In the front end.
Regards
Aviral Nag
=left([Field with Email], index([Field with Email], '@') - 1)