I want to write a script to verify the user entered their company email address correctly. The only part of the email address I can verify is the last section (@companyname.com), Is there a text wild card that I can use that represents and amount of text so I can verify the last section of the address, like *:
If(emailaddress.rawValue !== *@companyname.com){
xfa.host.msgbox("Last part of your email address is not correct");
}