Skip to content

Instantly share code, notes, and snippets.

@W3BGUY
Last active February 14, 2023 20:32
Show Gist options
  • 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='[email protected]';
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