Skip to main content
June 15, 2023
Question

Displaying Email Id in interface

  • June 15, 2023
  • 2 replies
  • 0 views

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

    2 replies

    harshitb6843
    June 15, 2023

    extract(local!email,"<",">")

    June 15, 2023

    Thank you very much . It is working