Flutter 用正则检查字符串邮箱
时间: 2024-06-13 14:03:57 浏览: 204
在Flutter中,可以使用正则表达式来检查字符串是否符合邮箱格式。具体步骤如下:
1. 导入正则表达式包:import 'dart:core';
2. 创建一个RegExp对象,用于匹配邮箱格式:RegExp regExp = RegExp(r'^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$');
3. 使用RegExp对象的hasMatch方法来检查字符串是否符合邮箱格式:bool isEmail = regExp.hasMatch('example@mail.com');
如果isEmail为true,则说明该字符串符合邮箱格式,否则不符合。
阅读全文