我是靠谱客的博主 仁爱绿茶,最近开发中收集的这篇文章主要介绍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 input) {
    RegExp mobile = new RegExp(r"(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,16}$");
    return mobile.hasMatch(input);
  }
复制代码

登录密码:6位数字验证码

static bool isValidateCaptcha(String input) {
    RegExp mobile = new RegExp(r"d{6}$");
    return mobile

最后

以上就是仁爱绿茶为你收集整理的dart常用正则表达式的全部内容,希望文章能够帮你解决dart常用正则表达式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部