仁爱绿茶

文章
7
资源
0
加入时间
3年0月9天

dart常用正则表达式

电话号码:1开头,后面10位数字static bool isPhone(String input) { RegExp mobile = new RegExp(r"1[0-9]\d{9}$"); return mobile.hasMatch(input); }复制代码登录密码:6~16位数字和字符组合static bool isLoginPassword(String in...