Skip to content
On this page

Home > @taiyuuki/utils > is_email

is_email() function

函数正在检查给定的字符串是否是有效的电子邮件地址。它使用正则表达式将字符串与有效电子邮件地址的模式进行匹配。 如果字符串与模式匹配,则函数返回“true”,表明它是有效的电子邮件地址。否则,它返回“false”。

Signature:

typescript
declare function is_email(str: string): boolean;
declare function is_email(str: string): boolean;

Parameters

ParameterTypeDescription
strstring参数 strany 类型,这意味着它可以是任何数据类型

Returns:

boolean

函数 is_email 返回一个布尔值,指示输入的 str 是否是有效的电子邮件地址。

Released under the MIT License.