changes.mady.by.user Aryn Wiebe
Saved on Nov 30, 2023
...
Using String:split(), we can split the email on “@“ and get the domain name.
local email = patient.contact.email local domain = email:split("@")[2] trace(domain)