Hi,
I am facing an issue where I need to display only email Id in the interface.
In database it is stored as name<email.id>. eg: Jack<Jack@hotmail.com>
For displaying it in the interface we queried from the database we need to show only the email id in the interface (i.e)<jack@hotmail.com>. I used split, stripwith function but it is not working as expected .
I am storing it in a local variable (local!intake.sourceEmail). In the "value" parameter of the field I referred this variable
Is there any other method where we can achieve this. Please let me know.
Thanks
Discussion posts and replies are publicly visible
extract(local!email,"<",">")
Thank you very much . It is working