IsValidEmail Operator - Haufe-Lexware/haufe.no-frills-transformation GitHub Wiki
The IsValidEmail operator checks whether an email address (as a string) is a valid email address or not.
| What | Type |
|---|---|
| Syntax | IsValidEmail(email) |
email |
string |
| Return type | bool |
The IsValidEmail operator returns true if the email address passed in email is a valid email address, in respect to the regular expression which lies behind this check.
Caution: Please note that this regular expression is not the same as Salesforce uses. In order to get the same behaviour as Salesforce, please use the RegExMatch Operator.