📌  相关文章
📜  颤振中的电子邮件验证正则表达式 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:22.193000             🧑  作者: Mango

代码示例2
var email = "tony@starkindustries.com"
bool emailValid = RegExp(r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+\.[a-zA-Z]+").hasMatch(email);