This function determines whether the provided value is of type str and contains an email address.
This function does not generate a change.
is_email(value)
Argument | Type | Description |
---|---|---|
value | any (required) | The value to be tested. |
Returns true
if the given value is of type str
and contains an email address, else false
.
This code shows some return values for is_email():
[
is_email( 'info@thingsdb.io' ),
is_email( 'test' ),
];
Return value in JSON format
[
true,
false
]