Skip to content

Instantly share code, notes, and snippets.

@W3BGUY
Last active February 14, 2023 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save W3BGUY/dbb19970ec0d030bfb053c0caffad6c8 to your computer and use it in GitHub Desktop.
Save W3BGUY/dbb19970ec0d030bfb053c0caffad6c8 to your computer and use it in GitHub Desktop.
Validate email format using RegExMatch
<trans>
email='testemail@test.co';
regTest='([A-z0-9._%+-]+@[A-z0-9.-]+\\.[A-z]{2,4})';
if(RegExMatch(email,regTest)>0,
email;,
Unmap();
);
</trans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment